omar

Results 2356 comments of omar

Note that f61a7ef22 (Sept 2025) has reduced the scope of using `SDL_GetGlobalMouseState()` to situation where your application window is NOT hovered only. So it should largely mitigate the issue. I...

> Texture IDs become invalid after destruction but are still used This is a XY Problem. As you pointed this is the root cause so let’s focus on the root...

Use Style Editor>Scale sliders to scale fonts and trigger textures update if you need to trigger the issue. Does it repro using one of the default ImGui examples unmodified ?...

Well please first try to confirm if this happens with unmodified ImGui example + narrow down to precise commit using bisect.

I added a check in local code and could not detect any issue when resizing: ```cpp IM_ASSERT(glIsTexture((GLuint)(intptr_t)pcmd->GetTexID()) GL_CALL(glBindTexture(GL_TEXTURE_2D, (GLuint)(intptr_t)pcmd->GetTexID())); ``` The issue is on your side and you should investigate...

Two things you can do to begin debugging this: - Browse `Fonts->Input 1 (Noto etc)` in that debug window and see if the glyph is listed and visible. This is...

I can confirm this on my side. I don't know if it is a bug/unsupported feature in FreeType or if we are misusing Freetype. It works for me with "seguiemj.tff"...

Thank you @sakiodre, closing this indeed!

> Everyone else (eg ff, chrome) can do it too. I do not see why Dear imgui would be special. Because Dear ImGui do not use many third-party libraries and...