We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14ef7bd commit 9ab25fbCopy full SHA for 9ab25fb
Imgui/src/ImGuiDiligentRenderer.cpp
@@ -753,7 +753,7 @@ void ImGuiDiligentRenderer::CreateFontsTexture()
753
VERIFY_EXPR(m_pTextureVar != nullptr);
754
755
// Store our identifier
756
- IO.Fonts->TexID = (ImTextureID)m_pFontSRV;
+ IO.Fonts->TexID = reinterpret_cast<ImTextureID>(m_pFontSRV.RawPtr());
757
}
758
759
float4 ImGuiDiligentRenderer::TransformClipRect(const ImVec2& DisplaySize, const float4& rect) const
0 commit comments