Searched refs:ImColor (Results 1 – 3 of 3) sorted by relevance
/external/mesa3d/src/intel/tools/ |
D | aubinator_viewer.h | 10 ImColor clear_color; 11 ImColor dwords_color; 12 ImColor highlight_color; 13 ImColor error_color; 14 ImColor missing_color; 15 ImColor boolean_color;
|
D | aubinator_viewer_urb.h | 68 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/ |
D | imgui.h | 104 struct ImColor; // Helper functions to create a color that can be converted to … 1701 struct ImColor struct 1705 …ImColor() { Value.x = Value.y = Value.z = Va… in ImColor() argument 1706 …ImColor(int r, int g, int b, int a = 255) { float sc = 1.0f/255.0f; Value.x … argument 1707 …ImColor(ImU32 rgba) { float sc = 1.0f/255.0f; Value.x … in ImColor() function 1708 …ImColor(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
|