| 3571 | } |
| 3572 | |
| 3573 | ImU32 ImGui::GetColorU32(ImGuiCol idx, float alpha_mul) |
| 3574 | { |
| 3575 | ImGuiStyle& style = GImGui->Style; |
| 3576 | ImVec4 c = style.Colors[idx]; |
| 3577 | c.w *= style.Alpha * alpha_mul; |
| 3578 | return ColorConvertFloat4ToU32(c); |
| 3579 | } |
| 3580 | |
| 3581 | ImU32 ImGui::GetColorU32(const ImVec4& col) |
| 3582 | { |
nothing calls this directly
no outgoing calls
no test coverage detected