mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-22 11:57:00 +00:00
Misc: Rework debug display of texture id in Metrics window (amend) (#7090)
Amend 96b5b17
This commit is contained in:
parent
07dbd46ddd
commit
f6836ff37f
@ -14472,7 +14472,7 @@ void ImGui::DebugNodeColumns(ImGuiOldColumns* columns)
|
|||||||
TreePop();
|
TreePop();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void FormatTextureIDForDebugDisplay(char* buf, int buf_size, const ImTextureID& tex_id)
|
static void FormatTextureIDForDebugDisplay(char* buf, int buf_size, ImTextureID tex_id)
|
||||||
{
|
{
|
||||||
if (sizeof(tex_id) >= sizeof(void*))
|
if (sizeof(tex_id) >= sizeof(void*))
|
||||||
ImFormatString(buf, buf_size, "0x%p", (void*)*(intptr_t*)(void*)&tex_id);
|
ImFormatString(buf, buf_size, "0x%p", (void*)*(intptr_t*)(void*)&tex_id);
|
||||||
|
Loading…
Reference in New Issue
Block a user