MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / Image

Method Image

include/Image.hpp:19–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17class Image : public ::Image {
18public:
19 Image(
20 void* data = nullptr,
21 int width = 0,
22 int height = 0,
23 int mipmaps = 1,
24 int format = PIXELFORMAT_UNCOMPRESSED_R8G8B8A8)
25 : ::Image{data, width, height, mipmaps, format} {
26 // Nothing.
27 }
28
29 Image(const ::Image& image) : ::Image(image) { }
30

Callers

nothing calls this directly

Calls 2

c_strMethod · 0.80
CopyMethod · 0.45

Tested by

no test coverage detected