Home
last modified time | relevance | path

Searched refs:ImColor (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/intel/tools/
Daubinator_viewer.h10 ImColor clear_color;
11 ImColor dwords_color;
12 ImColor highlight_color;
13 ImColor error_color;
14 ImColor missing_color;
15 ImColor boolean_color;
Daubinator_viewer_urb.h68 draw_list->AddRectFilled(alloc_tl, alloc_br, ImColor(r, g, b)); in DrawAllocation()
81 draw_list->AddRectFilled(const_tl, const_br, ImColor(r, g, b)); in DrawAllocation()
/external/mesa3d/src/imgui/
Dimgui.h104 struct ImColor; // Helper functions to create a color that can be converted to …
1701 struct ImColor struct
1705ImColor() { Value.x = Value.y = Value.z = Va… in ImColor() argument
1706ImColor(int r, int g, int b, int a = 255) { float sc = 1.0f/255.0f; Value.x … argument
1707ImColor(ImU32 rgba) { float sc = 1.0f/255.0f; Value.x … in ImColor() function
1708ImColor(float r, float g, float b, float a = 1.0f) { Value.x = r; Value.y = g; Value.…
1709 ImColor(const ImVec4& col) { Value = col; } in ImColor() function
1715 …static ImColor HSV(float h, float s, float v, float a = 1.0f) { float r,g,b; ImGui::ColorConvert… argument