Searched refs:ColorConvertHSVtoRGB (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/intel/tools/ |
D | aubinator_viewer_urb.h | 65 ImGui::ColorConvertHSVtoRGB((2 * s) * 1.0f / (2 * n_stages), in DrawAllocation() 78 ImGui::ColorConvertHSVtoRGB((2 * s + 1) * 1.0f / (2 * n_stages), in DrawAllocation()
|
/external/mesa3d/src/imgui/ |
D | imgui.h | 640 …IMGUI_API void ColorConvertHSVtoRGB(float h, float s, float v, float& out_r, float& out_g… 1714 …inline void SetHSV(float h, float s, float v, float a = 1.0f){ ImGui::ColorConvertHSVtoRGB(h, s… 1715 …loat h, float s, float v, float a = 1.0f) { float r,g,b; ImGui::ColorConvertHSVtoRGB(h, s, v, r,…
|
D | imgui_widgets.cpp | 3995 ColorConvertHSVtoRGB(f[0], f[1], f[2], f[0], f[1], f[2]); in ColorEdit4() 4270 …ColorConvertHSVtoRGB(H >= 1.0f ? H - 10 * 1e-6f : H, S > 0.0f ? S : 10*1e-6f, V > 0.0f ? V : 1e-6f… in ColorPicker4() 4302 ColorConvertHSVtoRGB(H, S, new_V <= 0 ? V * 0.5f : new_V, col[0], col[1], col[2]); in ColorPicker4() 4304 … ColorConvertHSVtoRGB(H, new_S <= 0 ? S * 0.5f : new_S, new_V, col[0], col[1], col[2]); in ColorPicker4() 4308 …ImVec4 hue_color_f(1, 1, 1, 1); ColorConvertHSVtoRGB(H, 1, 1, hue_color_f.x, hue_color_f.y, hue_co… in ColorPicker4()
|
D | imgui.cpp | 1800 void ImGui::ColorConvertHSVtoRGB(float h, float s, float v, float& out_r, float& out_g, float& out_… in ColorConvertHSVtoRGB() function in ImGui
|