MCPcopy Create free account
hub / github.com/Tencent/tgfx / Bitmap

Method Bitmap

src/core/Bitmap.cpp:25–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23
24namespace tgfx {
25Bitmap::Bitmap(int width, int height, bool alphaOnly, bool tryHardware) {
26 allocPixels(width, height, alphaOnly, tryHardware);
27}
28
29Bitmap::Bitmap(const Bitmap& src) : _info(src._info), pixelRef(src.pixelRef) {
30}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected