mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-02-17 20:31:57 -05:00
restore pen position (did break it for debug previously)
This commit is contained in:
parent
253d07435c
commit
8ddda84cd7
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ public:
|
||||||
void setUnderlineColor(uint32_t rgba = 0x000000FF) { m_underlineColor = toABGR(rgba); }
|
void setUnderlineColor(uint32_t rgba = 0x000000FF) { m_underlineColor = toABGR(rgba); }
|
||||||
void setStrikeThroughColor(uint32_t rgba = 0x000000FF) { m_strikeThroughColor = toABGR(rgba); }
|
void setStrikeThroughColor(uint32_t rgba = 0x000000FF) { m_strikeThroughColor = toABGR(rgba); }
|
||||||
|
|
||||||
void setPenPosition(float x, float /*y*/) { m_penX = x; };// m_penY = y; }
|
void setPenPosition(float x, float y) { m_penX = x; m_penY = y; }
|
||||||
|
|
||||||
/// return the size of the text
|
/// return the size of the text
|
||||||
//Rectangle measureText(FontHandle fontHandle, const char * _string);
|
//Rectangle measureText(FontHandle fontHandle, const char * _string);
|
||||||
|
|
Loading…
Reference in a new issue