Metrics/Debugger: Browsing a Storage perform hover lookup on identifier.
This commit is contained in:
@@ -80,6 +80,7 @@ Other changes:
|
|||||||
- Drag and Drop: Fixes an issue when elapsing payload would be based on last payload
|
- Drag and Drop: Fixes an issue when elapsing payload would be based on last payload
|
||||||
frame instead of last drag source frame, which makes a difference if not resubmitting
|
frame instead of last drag source frame, which makes a difference if not resubmitting
|
||||||
payload every frame. (#143)
|
payload every frame. (#143)
|
||||||
|
- Debug Tools: Metrics/Debugger: Browsing a Storage perform hover lookup on identifier.
|
||||||
- Backends: SDL3: Update for API removal of keysym field in SDL_KeyboardEvent. (#7728)
|
- Backends: SDL3: Update for API removal of keysym field in SDL_KeyboardEvent. (#7728)
|
||||||
- Backends: Vulkan: Remove Volk/ from volk.h #include directives. (#7722, #6582, #4854)
|
- Backends: Vulkan: Remove Volk/ from volk.h #include directives. (#7722, #6582, #4854)
|
||||||
[@martin-ejdestig]
|
[@martin-ejdestig]
|
||||||
|
|||||||
@@ -15466,7 +15466,10 @@ void ImGui::DebugNodeStorage(ImGuiStorage* storage, const char* label)
|
|||||||
if (!TreeNode(label, "%s: %d entries, %d bytes", label, storage->Data.Size, storage->Data.size_in_bytes()))
|
if (!TreeNode(label, "%s: %d entries, %d bytes", label, storage->Data.Size, storage->Data.size_in_bytes()))
|
||||||
return;
|
return;
|
||||||
for (const ImGuiStoragePair& p : storage->Data)
|
for (const ImGuiStoragePair& p : storage->Data)
|
||||||
|
{
|
||||||
BulletText("Key 0x%08X Value { i: %d }", p.key, p.val_i); // Important: we currently don't store a type, real value may not be integer.
|
BulletText("Key 0x%08X Value { i: %d }", p.key, p.val_i); // Important: we currently don't store a type, real value may not be integer.
|
||||||
|
DebugLocateItemOnHover(p.key);
|
||||||
|
}
|
||||||
TreePop();
|
TreePop();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user