| 1159 | } |
| 1160 | |
| 1161 | void ImGui::Image(ImTextureRef tex_ref, const ImVec2& image_size, const ImVec2& uv0, const ImVec2& uv1) |
| 1162 | { |
| 1163 | ImageWithBg(tex_ref, image_size, uv0, uv1); |
| 1164 | } |
| 1165 | |
| 1166 | // 1.91.9 (February 2025) removed 'tint_col' and 'border_col' parameters, made border size not depend on color value. (#8131, #8238) |
| 1167 | #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS |
nothing calls this directly
no test coverage detected