[PR #1392] [MERGED] Devtools improvements I #2083

Closed
opened 2026-02-27 21:15:07 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/1392
Author: @viniciuslrangel
Created: 10/16/2024
Status: Merged
Merged: 10/16/2024
Merged by: @georgemoralis

Base: mainHead: devtools-improvs1


📝 Commits (10+)

  • cb0814f devtools: fix showing entire depth instead of bits
  • 1aa0cd5 devtools: show button for stage instead of menu bar
  • 5caee0f devtools: removed useless "Batch" collapse & don't collapse last batch
  • a145ed0 devtools: refactor DrawRow to templating
  • ca0ca49 devtools: reg popup size adjusted to the content
  • 02f42b8 devtools: better window names
  • d56abb0 devtools: regview layout compacted
  • eddbe59 devtools: option to show collapsed frame dump
  • 5d3c2ec devtools: show compute shader regs
  • 8860574 devtools: tips popup

📊 Changes

19 files changed (+473 additions, -202 deletions)

View changed files

📝 src/common/bit_field.h (+3 -2)
📝 src/core/debug_state.cpp (+23 -10)
📝 src/core/debug_state.h (+12 -4)
src/core/devtools/help.txt (+8 -0)
📝 src/core/devtools/layer.cpp (+35 -0)
📝 src/core/devtools/options.cpp (+6 -0)
📝 src/core/devtools/options.h (+2 -1)
📝 src/core/devtools/widget/cmd_list.cpp (+34 -13)
📝 src/core/devtools/widget/cmd_list.h (+3 -1)
📝 src/core/devtools/widget/common.h (+16 -7)
📝 src/core/devtools/widget/frame_dump.cpp (+42 -21)
📝 src/core/devtools/widget/frame_dump.h (+1 -0)
📝 src/core/devtools/widget/reg_popup.cpp (+91 -81)
📝 src/core/devtools/widget/reg_popup.h (+13 -5)
📝 src/core/devtools/widget/reg_view.cpp (+167 -49)
📝 src/core/devtools/widget/reg_view.h (+9 -2)
📝 src/core/libraries/dialogs/ime_dialog_ui.cpp (+1 -1)
📝 src/imgui/imgui_std.h (+2 -2)
📝 src/video_core/amdgpu/liverpool.cpp (+5 -3)

📄 Description

Compute shader, fixes, and better UX


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/shadps4-emu/shadPS4/pull/1392 **Author:** [@viniciuslrangel](https://github.com/viniciuslrangel) **Created:** 10/16/2024 **Status:** ✅ Merged **Merged:** 10/16/2024 **Merged by:** [@georgemoralis](https://github.com/georgemoralis) **Base:** `main` ← **Head:** `devtools-improvs1` --- ### 📝 Commits (10+) - [`cb0814f`](https://github.com/shadps4-emu/shadPS4/commit/cb0814fe2d3c3a8a4447c531e262be1d23631f26) devtools: fix showing entire depth instead of bits - [`1aa0cd5`](https://github.com/shadps4-emu/shadPS4/commit/1aa0cd514ba093e4e1339ab83f3100d1473eb03e) devtools: show button for stage instead of menu bar - [`5caee0f`](https://github.com/shadps4-emu/shadPS4/commit/5caee0f4c302702c0e0af0bc76d44cdf5b146e5b) devtools: removed useless "Batch" collapse & don't collapse last batch - [`a145ed0`](https://github.com/shadps4-emu/shadPS4/commit/a145ed0f077966ea56200255cc00fee5c5cb4426) devtools: refactor DrawRow to templating - [`ca0ca49`](https://github.com/shadps4-emu/shadPS4/commit/ca0ca4913f7f44562dd71a31e5f65e9ac7b0a87a) devtools: reg popup size adjusted to the content - [`02f42b8`](https://github.com/shadps4-emu/shadPS4/commit/02f42b8e0ad082af530a1087225558ff34b207ff) devtools: better window names - [`d56abb0`](https://github.com/shadps4-emu/shadPS4/commit/d56abb00265829cbc79455bad29817a2d9dce5fb) devtools: regview layout compacted - [`eddbe59`](https://github.com/shadps4-emu/shadPS4/commit/eddbe59793554214c75a88f35c54a9ff80ae6318) devtools: option to show collapsed frame dump - [`5d3c2ec`](https://github.com/shadps4-emu/shadPS4/commit/5d3c2eccd13f412683546a993e75943674c614cd) devtools: show compute shader regs - [`8860574`](https://github.com/shadps4-emu/shadPS4/commit/8860574ef3d38b22159abd50e159e945a570bee7) devtools: tips popup ### 📊 Changes **19 files changed** (+473 additions, -202 deletions) <details> <summary>View changed files</summary> 📝 `src/common/bit_field.h` (+3 -2) 📝 `src/core/debug_state.cpp` (+23 -10) 📝 `src/core/debug_state.h` (+12 -4) ➕ `src/core/devtools/help.txt` (+8 -0) 📝 `src/core/devtools/layer.cpp` (+35 -0) 📝 `src/core/devtools/options.cpp` (+6 -0) 📝 `src/core/devtools/options.h` (+2 -1) 📝 `src/core/devtools/widget/cmd_list.cpp` (+34 -13) 📝 `src/core/devtools/widget/cmd_list.h` (+3 -1) 📝 `src/core/devtools/widget/common.h` (+16 -7) 📝 `src/core/devtools/widget/frame_dump.cpp` (+42 -21) 📝 `src/core/devtools/widget/frame_dump.h` (+1 -0) 📝 `src/core/devtools/widget/reg_popup.cpp` (+91 -81) 📝 `src/core/devtools/widget/reg_popup.h` (+13 -5) 📝 `src/core/devtools/widget/reg_view.cpp` (+167 -49) 📝 `src/core/devtools/widget/reg_view.h` (+9 -2) 📝 `src/core/libraries/dialogs/ime_dialog_ui.cpp` (+1 -1) 📝 `src/imgui/imgui_std.h` (+2 -2) 📝 `src/video_core/amdgpu/liverpool.cpp` (+5 -3) </details> ### 📄 Description Compute shader, fixes, and better UX --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 21:15:07 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/shadPS4#2083
No description provided.