From 9e6430ebb326ce4d6727eb343497c776d78d8059 Mon Sep 17 00:00:00 2001 From: ocornut Date: Tue, 6 Dec 2022 15:25:10 +0100 Subject: [PATCH] Texture-based round corners: fixed unused variables warnings. --- imgui_draw.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/imgui_draw.cpp b/imgui_draw.cpp index 2d341fd1c..bb759d594 100644 --- a/imgui_draw.cpp +++ b/imgui_draw.cpp @@ -1460,8 +1460,7 @@ inline bool AddRoundCornerRect(ImDrawList* draw_list, const ImVec2& a, const ImV if ((round_corner_data.RectId < 0) || (square_corner_data.RectId < 0)) return false; // No data for this configuration - ImTextureID tex_id = data->Font->ContainerAtlas->TexID; - IM_ASSERT(tex_id == draw_list->_TextureIdStack.back()); // Use high-level ImGui::PushFont() or low-level ImDrawList::PushTextureId() to change font. + IM_ASSERT(data->Font->ContainerAtlas->TexID == draw_list->_TextureIdStack.back()); // Use high-level ImGui::PushFont() or low-level ImDrawList::PushTextureId() to change font. // Calculate UVs for the three points we are interested in from the texture // - corner_uv[0] is the innermost point of the circle (solid for filled circles) @@ -1877,8 +1876,7 @@ inline bool AddRoundCornerCircle(ImDrawList* draw_list, const ImVec2& center, fl return false; const ImDrawListSharedData* data = draw_list->_Data; - ImTextureID tex_id = data->Font->ContainerAtlas->TexID; - IM_ASSERT(tex_id == draw_list->_TextureIdStack.back()); // Use high-level ImGui::PushFont() or low-level ImDrawList::PushTextureId() to change font. + IM_ASSERT(data->Font->ContainerAtlas->TexID == draw_list->_TextureIdStack.back()); // Use high-level ImGui::PushFont() or low-level ImDrawList::PushTextureId() to change font. IM_ASSERT_PARANOID(!(data->Font->ContainerAtlas->Flags & ImFontAtlasFlags_NoBakedRoundCorners)); // No data in font // Filled rectangles have no stroke width @@ -3868,6 +3866,7 @@ static void ImFontAtlasBuildRenderRoundCornersTexData(ImFontAtlas* atlas) const int w = atlas->TexWidth; const unsigned int max = ImFontAtlasRoundCornersMaxSize * ImFontAtlasRoundCornersMaxStrokeWidth; const int pad = FONT_ATLAS_ROUNDED_CORNER_TEX_PADDING; + IM_UNUSED(max); IM_ASSERT(atlas->TexRoundCornerData.Size == (int)max); // ImFontAtlasBuildRegisterRoundCornersCustomRects() will have created these for us IM_ASSERT(atlas->TexSquareCornerData.Size == (int)max); @@ -5163,6 +5162,7 @@ bool ImGui::RenderWindowResizeGrip(ImDrawList* draw_list, const ImVec2& corner, return false; ImFontAtlas* atlas = draw_list->_Data->Font->ContainerAtlas; + IM_UNUSED(atlas); IM_ASSERT(atlas->TexID == draw_list->_TextureIdStack.back()); // Use high-level ImGui::PushFont() or low-level ImDrawList::PushTextureId() to change font. IM_ASSERT(ImIsPowerOfTwo(flags)); // Only allow a single corner to be specified here. IM_ASSERT_PARANOID((atlas->Flags & ImFontAtlasFlags_NoBakedRoundCorners) == 0);