| 26 | YAxisOrientation yOrientation; |
| 27 | |
| 28 | inline BitmapRef() : pixels(NULL), width(0), height(0), yOrientation(MSDFGEN_Y_AXIS_DEFAULT_ORIENTATION) { } |
| 29 | inline BitmapRef(T *pixels, int width, int height, YAxisOrientation yOrientation = MSDFGEN_Y_AXIS_DEFAULT_ORIENTATION) : pixels(pixels), width(width), height(height), yOrientation(yOrientation) { } |
| 30 | |
| 31 | inline T *operator()(int x, int y) const { |
nothing calls this directly
no outgoing calls
no test coverage detected