// Enumeration for ColorEdit3() / ColorEdit4() / ColorPicker3() / ColorPicker4()
enumImGuiColorEditFlags_
{
ImGuiColorEditFlags_RGB=1<<0,// ColorEdit: Default to one among RGB/HSV/HEX. User can still use the options menu to change. ColorPicker: Choose any combination or RGB/HSX/HEX..
ImGuiColorEditFlags_RGB=1<<0,// ColorEdit: Default to one among RGB/HSV/HEX. User can still use the options menu to change. ColorPicker: Choose any combination or RGB/HSV/HEX.
ImGuiColorEditFlags_NoInputs =1<<7,// ColorEdit, ColorPicker: Disable inputs sliders/text widgets, show only the colored square.
ImGuiColorEditFlags_NoTooltip =1<<8,// ColorEdit, ColorButton: Disable tooltip when hovering the colored square.
ImGuiColorEditFlags_NoLabel =1<<9,// ColorEdit: Disable display of inline text label (however the label is still used in tooltip and picker)
ImGuiColorEditFlags_AlphaBar =1<<10,// ColorPicker: Show vertical alpha bar/gradient
ImGuiColorEditFlags_Float =1<<11,// ColorEdit, ColorPicker: display values formatted as 0.0f..1.0f floats instead of 0..255 integers
ImGuiColorEditFlags_Float =1<<3,// ColorEdit, ColorPicker: display values formatted as 0.0f..1.0f floats instead of 0..255 integers. No round-trip of value via integers.
ImGuiColorEditFlags_AlphaBar =1<<4,// ColorPicker: Show vertical alpha bar/gradient.