This commit is contained in:
Branimir Karadžić 2014-06-29 22:20:31 -07:00
parent 2b147081c4
commit b610a10217
2 changed files with 0 additions and 8 deletions

View file

@ -1909,13 +1909,6 @@ void imguiDrawRect(float _x, float _y, float _width, float _height, uint32_t _ar
s_imgui.drawRect(_x, _y, _width, _height, _argb); s_imgui.drawRect(_x, _y, _width, _height, _argb);
} }
int imguiReserve(int _y)
{
const int yy = s_imgui.m_widgetY;
s_imgui.m_widgetY += _y;
return yy;
}
void imguiBool(const char* _text, bool& _flag, bool _enabled) void imguiBool(const char* _text, bool& _flag, bool _enabled)
{ {
if (imguiCheck(_text, _flag, _enabled) ) if (imguiCheck(_text, _flag, _enabled) )

View file

@ -84,7 +84,6 @@ void imguiDrawLine(float _x0, float _y0, float _x1, float _y1, float _r, uint32_
void imguiDrawRoundedRect(float _x, float _y, float _w, float _h, float _r, uint32_t _argb); void imguiDrawRoundedRect(float _x, float _y, float _w, float _h, float _r, uint32_t _argb);
void imguiDrawRect(float _x, float _y, float _w, float _h, uint32_t _argb); void imguiDrawRect(float _x, float _y, float _w, float _h, uint32_t _argb);
int imguiReserve(int _y);
void imguiBool(const char* _text, bool& _flag, bool _enabled = true); void imguiBool(const char* _text, bool& _flag, bool _enabled = true);
void imguiColorWheel(float _rgb[3], bool _respectIndentation = false, bool _enabled = true); void imguiColorWheel(float _rgb[3], bool _respectIndentation = false, bool _enabled = true);
void imguiColorWheel(const char* _str, float _rgb[3], bool& _activated, bool _enabled = true); void imguiColorWheel(const char* _str, float _rgb[3], bool& _activated, bool _enabled = true);