|
|
@@ -72,6 +72,9 @@ void imguiValue(const char* _text);
|
|
|
bool imguiSlider(const char* _text, float* _val, float _vmin, float _vmax, float _vinc, bool _enabled = true);
|
|
|
bool imguiSlider(const char* _text, int32_t* _val, int32_t _vmin, int32_t _vmax, bool _enabled = true);
|
|
|
|
|
|
+uint32_t imguiChooseUseMacroInstead(uint32_t _selected, const char* _first, ...);
|
|
|
+#define imguiChoose(...) imguiChooseUseMacroInstead(__VA_ARGS__, NULL)
|
|
|
+
|
|
|
void imguiDrawText(int _x, int _y, ImguiTextAlign::Enum _align, const char* _text, uint32_t _argb);
|
|
|
void imguiDrawLine(float _x0, float _y0, float _x1, float _y1, float _r, uint32_t _argb);
|
|
|
void imguiDrawRoundedRect(float _x, float _y, float _w, float _h, float _r, uint32_t _argb);
|