mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Added imguiGetWidgetW().
This commit is contained in:
parent
67c69d3ba2
commit
528756610b
2 changed files with 6 additions and 0 deletions
|
@ -3160,6 +3160,11 @@ int32_t imguiGetWidgetY()
|
||||||
return s_imgui.getCurrentArea().m_widgetY;
|
return s_imgui.getCurrentArea().m_widgetY;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int32_t imguiGetWidgetW()
|
||||||
|
{
|
||||||
|
return s_imgui.getCurrentArea().m_widgetW;
|
||||||
|
}
|
||||||
|
|
||||||
void imguiSetCurrentScissor()
|
void imguiSetCurrentScissor()
|
||||||
{
|
{
|
||||||
return s_imgui.setCurrentScissor();
|
return s_imgui.setCurrentScissor();
|
||||||
|
|
|
@ -149,6 +149,7 @@ void imguiSeparatorLine(uint16_t _height = IMGUI_SEPARATOR_VALUE);
|
||||||
|
|
||||||
int32_t imguiGetWidgetX();
|
int32_t imguiGetWidgetX();
|
||||||
int32_t imguiGetWidgetY();
|
int32_t imguiGetWidgetY();
|
||||||
|
int32_t imguiGetWidgetW();
|
||||||
void imguiSetCurrentScissor(); // Call before drawing custom widgets over imgui area.
|
void imguiSetCurrentScissor(); // Call before drawing custom widgets over imgui area.
|
||||||
|
|
||||||
bool imguiButton(const char* _text, bool _enabled = true, ImguiAlign::Enum _align = ImguiAlign::LeftIndented, uint32_t _rgb0 = IMGUI_BUTTON_RGB0, int32_t _r = IMGUI_BUTTON_R);
|
bool imguiButton(const char* _text, bool _enabled = true, ImguiAlign::Enum _align = ImguiAlign::LeftIndented, uint32_t _rgb0 = IMGUI_BUTTON_RGB0, int32_t _r = IMGUI_BUTTON_R);
|
||||||
|
|
Loading…
Reference in a new issue