mirror of
https://github.com/Drezil/imgui.git
synced 2025-07-06 13:08:47 +02:00
ColorPicker4: hue/alpha bars draw arrows that would look right on all background. RenderArrow helper. (#346)
This commit is contained in:
@ -202,6 +202,15 @@ enum ImGuiDataType
|
||||
ImGuiDataType_Float2,
|
||||
};
|
||||
|
||||
enum ImGuiDir
|
||||
{
|
||||
ImGuiDir_None = -1,
|
||||
ImGuiDir_Left = 0,
|
||||
ImGuiDir_Right = 1,
|
||||
ImGuiDir_Up = 2,
|
||||
ImGuiDir_Down = 3,
|
||||
};
|
||||
|
||||
enum ImGuiCorner
|
||||
{
|
||||
ImGuiCorner_TopLeft = 1 << 0, // 1
|
||||
|
Reference in New Issue
Block a user