| 16283 | } |
| 16284 | |
| 16285 | void ImGui::UpdateDebugToolFlashStyleColor() |
| 16286 | { |
| 16287 | ImGuiContext& g = *GImGui; |
| 16288 | if (g.DebugFlashStyleColorTime <= 0.0f) |
| 16289 | return; |
| 16290 | 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); |
| 16291 | g.Style.Colors[g.DebugFlashStyleColorIdx].w = 1.0f; |
| 16292 | if ((g.DebugFlashStyleColorTime -= g.IO.DeltaTime) <= 0.0f) |
| 16293 | DebugFlashStyleColorStop(); |
| 16294 | } |
| 16295 | |
| 16296 | ImU64 ImGui::DebugTextureIDToU64(ImTextureID tex_id) |
| 16297 | { |
nothing calls this directly
no test coverage detected