MCPcopy Create free account
hub / github.com/Samsung/rlottie / VBitmap

Method VBitmap

src/vector/vbitmap.cpp:108–113  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

106}
107
108VBitmap::VBitmap(size_t width, size_t height, VBitmap::Format format)
109{
110 if (width <= 0 || height <= 0 || format == Format::Invalid) return;
111
112 mImpl = rc_ptr<Impl>(width, height, format);
113}
114
115VBitmap::VBitmap(uchar *data, size_t width, size_t height, size_t bytesPerLine,
116 VBitmap::Format format)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected