[PR #1637] [MERGED] More devtools stuff #2215

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

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/1637
Author: @viniciuslrangel
Created: 12/1/2024
Status: Merged
Merged: 12/1/2024
Merged by: @psucien

Base: mainHead: devtools-ii


📝 Commits (5)

  • 5462f67 devtools: memory map viewer
  • 35b397e devtools: batch highlight only for non-group viewer
  • be930aa devtools: fix not showing entire user data
  • 536ec3e devtools: shader debug viewer
  • e560392 devtools: add more reg naming

📊 Changes

18 files changed (+491 additions, -65 deletions)

View changed files

📝 CMakeLists.txt (+4 -0)
📝 src/common/config.cpp (+12 -0)
📝 src/common/config.h (+2 -0)
📝 src/core/debug_state.cpp (+9 -2)
📝 src/core/debug_state.h (+42 -6)
📝 src/core/devtools/gcn/gcn_context_regs.cpp (+10 -0)
📝 src/core/devtools/layer.cpp (+38 -7)
📝 src/core/devtools/options.cpp (+8 -3)
📝 src/core/devtools/options.h (+2 -1)
📝 src/core/devtools/widget/cmd_list.cpp (+2 -2)
📝 src/core/devtools/widget/common.h (+57 -0)
src/core/devtools/widget/memory_map.cpp (+134 -0)
src/core/devtools/widget/memory_map.h (+33 -0)
📝 src/core/devtools/widget/reg_view.cpp (+5 -44)
src/core/devtools/widget/shader_list.cpp (+95 -0)
src/core/devtools/widget/shader_list.h (+28 -0)
📝 src/core/memory.h (+6 -0)
📝 src/video_core/renderer_vulkan/vk_pipeline_cache.cpp (+4 -0)

📄 Description

  • Add memory map window
  • Add loaded shader inspector
  • Fix user data display bug
  • Fix miss-highlight

image
image


🔄 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/1637 **Author:** [@viniciuslrangel](https://github.com/viniciuslrangel) **Created:** 12/1/2024 **Status:** ✅ Merged **Merged:** 12/1/2024 **Merged by:** [@psucien](https://github.com/psucien) **Base:** `main` ← **Head:** `devtools-ii` --- ### 📝 Commits (5) - [`5462f67`](https://github.com/shadps4-emu/shadPS4/commit/5462f67f0d906579daaa95b5947a58c3bcb851db) devtools: memory map viewer - [`35b397e`](https://github.com/shadps4-emu/shadPS4/commit/35b397eae7982b572f2531dcac5cbd45e40455f7) devtools: batch highlight only for non-group viewer - [`be930aa`](https://github.com/shadps4-emu/shadPS4/commit/be930aa055f5e06d0c76029c8f28f44edc25cf3d) devtools: fix not showing entire user data - [`536ec3e`](https://github.com/shadps4-emu/shadPS4/commit/536ec3e5982c7f204fd84f8d2b3b1b3f3a3f934f) devtools: shader debug viewer - [`e560392`](https://github.com/shadps4-emu/shadPS4/commit/e560392fa04424fe7649ee2514e5e99e871c699b) devtools: add more reg naming ### 📊 Changes **18 files changed** (+491 additions, -65 deletions) <details> <summary>View changed files</summary> 📝 `CMakeLists.txt` (+4 -0) 📝 `src/common/config.cpp` (+12 -0) 📝 `src/common/config.h` (+2 -0) 📝 `src/core/debug_state.cpp` (+9 -2) 📝 `src/core/debug_state.h` (+42 -6) 📝 `src/core/devtools/gcn/gcn_context_regs.cpp` (+10 -0) 📝 `src/core/devtools/layer.cpp` (+38 -7) 📝 `src/core/devtools/options.cpp` (+8 -3) 📝 `src/core/devtools/options.h` (+2 -1) 📝 `src/core/devtools/widget/cmd_list.cpp` (+2 -2) 📝 `src/core/devtools/widget/common.h` (+57 -0) ➕ `src/core/devtools/widget/memory_map.cpp` (+134 -0) ➕ `src/core/devtools/widget/memory_map.h` (+33 -0) 📝 `src/core/devtools/widget/reg_view.cpp` (+5 -44) ➕ `src/core/devtools/widget/shader_list.cpp` (+95 -0) ➕ `src/core/devtools/widget/shader_list.h` (+28 -0) 📝 `src/core/memory.h` (+6 -0) 📝 `src/video_core/renderer_vulkan/vk_pipeline_cache.cpp` (+4 -0) </details> ### 📄 Description - Add memory map window - Add loaded shader inspector - Fix user data display bug - Fix miss-highlight ![image](https://github.com/user-attachments/assets/d363a789-27be-43b7-9537-d814051500f2) ![image](https://github.com/user-attachments/assets/6c01fc98-2c50-4264-bab5-b935c0cfaab9) --- <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:37 +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#2215
No description provided.