Browse Source

Changed call from cosf to ImCos (#7939)

pull/7943/head
tanoxyz 2 months ago
committed by GitHub
parent
commit
1d88609043
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      imgui.cpp

2
imgui.cpp

@ -14757,7 +14757,7 @@ void ImGui::UpdateDebugToolFlashStyleColor()
ImGuiContext& g = *GImGui; ImGuiContext& g = *GImGui;
if (g.DebugFlashStyleColorTime <= 0.0f) if (g.DebugFlashStyleColorTime <= 0.0f)
return; return;
ColorConvertHSVtoRGB(cosf(g.DebugFlashStyleColorTime * 6.0f) * 0.5f + 0.5f, 0.5f, 0.5f, g.Style.Colors[g.DebugFlashStyleColorIdx].x, g.Style.Colors[g.DebugFlashStyleColorIdx].y, g.Style.Colors[g.DebugFlashStyleColorIdx].z); ColorConvertHSVtoRGB(ImCos(g.DebugFlashStyleColorTime * 6.0f) * 0.5f + 0.5f, 0.5f, 0.5f, g.Style.Colors[g.DebugFlashStyleColorIdx].x, g.Style.Colors[g.DebugFlashStyleColorIdx].y, g.Style.Colors[g.DebugFlashStyleColorIdx].z);
g.Style.Colors[g.DebugFlashStyleColorIdx].w = 1.0f; g.Style.Colors[g.DebugFlashStyleColorIdx].w = 1.0f;
if ((g.DebugFlashStyleColorTime -= g.IO.DeltaTime) <= 0.0f) if ((g.DebugFlashStyleColorTime -= g.IO.DeltaTime) <= 0.0f)
DebugFlashStyleColorStop(); DebugFlashStyleColorStop();

Loading…
Cancel
Save