MCPcopy Create free account
hub / github.com/Chlumsky/msdfgen / BitmapConstRef

Method BitmapConstRef

core/BitmapRef.hpp:54–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52 YAxisOrientation yOrientation;
53
54 inline BitmapConstRef() : pixels(NULL), width(0), height(0), yOrientation(MSDFGEN_Y_AXIS_DEFAULT_ORIENTATION) { }
55 inline BitmapConstRef(const T *pixels, int width, int height, YAxisOrientation yOrientation = MSDFGEN_Y_AXIS_DEFAULT_ORIENTATION) : pixels(pixels), width(width), height(height), yOrientation(yOrientation) { }
56 inline BitmapConstRef(const BitmapRef<T, N> &orig) : pixels(orig.pixels), width(orig.width), height(orig.height), yOrientation(orig.yOrientation) { }
57

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected