[PR #1705] [MERGED] Devtools - Shader editing #2254

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

📋 Pull Request Information

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

Base: mainHead: devtools-iii


📝 Commits (3)

  • 56d9eb3 devtools: shader editing and compiling
  • aa72143 devtools: patch shader at runtime
  • 3c0ea18 devtools: shader editing load patch even with config disabled

📊 Changes

19 files changed (+465 additions, -102 deletions)

View changed files

📝 src/common/string_util.cpp (+4 -0)
📝 src/common/string_util.h (+2 -0)
📝 src/core/debug_state.cpp (+6 -5)
📝 src/core/debug_state.h (+30 -12)
📝 src/core/devtools/options.h (+2 -2)
📝 src/core/devtools/widget/common.h (+22 -9)
📝 src/core/devtools/widget/shader_list.cpp (+192 -36)
📝 src/core/devtools/widget/shader_list.h (+20 -8)
📝 src/core/devtools/widget/text_editor.cpp (+48 -1)
📝 src/core/devtools/widget/text_editor.h (+1 -0)
📝 src/sdl_window.cpp (+15 -0)
📝 src/sdl_window.h (+5 -0)
📝 src/video_core/renderer_vulkan/vk_compute_pipeline.cpp (+1 -1)
📝 src/video_core/renderer_vulkan/vk_compute_pipeline.h (+21 -3)
📝 src/video_core/renderer_vulkan/vk_graphics_pipeline.h (+2 -0)
📝 src/video_core/renderer_vulkan/vk_pipeline_cache.cpp (+62 -18)
📝 src/video_core/renderer_vulkan/vk_pipeline_cache.h (+20 -7)
📝 src/video_core/renderer_vulkan/vk_presenter.h (+8 -0)
📝 src/video_core/renderer_vulkan/vk_rasterizer.h (+4 -0)

📄 Description

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/1705 **Author:** [@viniciuslrangel](https://github.com/viniciuslrangel) **Created:** 12/8/2024 **Status:** ✅ Merged **Merged:** 12/9/2024 **Merged by:** [@psucien](https://github.com/psucien) **Base:** `main` ← **Head:** `devtools-iii` --- ### 📝 Commits (3) - [`56d9eb3`](https://github.com/shadps4-emu/shadPS4/commit/56d9eb3905d517e4fe99844f3d8f04495b856c3d) devtools: shader editing and compiling - [`aa72143`](https://github.com/shadps4-emu/shadPS4/commit/aa72143be7265bee9df04dc50afd7f778cc1844c) devtools: patch shader at runtime - [`3c0ea18`](https://github.com/shadps4-emu/shadPS4/commit/3c0ea1855641bf98325498351e804d9d0303be50) devtools: shader editing load patch even with config disabled ### 📊 Changes **19 files changed** (+465 additions, -102 deletions) <details> <summary>View changed files</summary> 📝 `src/common/string_util.cpp` (+4 -0) 📝 `src/common/string_util.h` (+2 -0) 📝 `src/core/debug_state.cpp` (+6 -5) 📝 `src/core/debug_state.h` (+30 -12) 📝 `src/core/devtools/options.h` (+2 -2) 📝 `src/core/devtools/widget/common.h` (+22 -9) 📝 `src/core/devtools/widget/shader_list.cpp` (+192 -36) 📝 `src/core/devtools/widget/shader_list.h` (+20 -8) 📝 `src/core/devtools/widget/text_editor.cpp` (+48 -1) 📝 `src/core/devtools/widget/text_editor.h` (+1 -0) 📝 `src/sdl_window.cpp` (+15 -0) 📝 `src/sdl_window.h` (+5 -0) 📝 `src/video_core/renderer_vulkan/vk_compute_pipeline.cpp` (+1 -1) 📝 `src/video_core/renderer_vulkan/vk_compute_pipeline.h` (+21 -3) 📝 `src/video_core/renderer_vulkan/vk_graphics_pipeline.h` (+2 -0) 📝 `src/video_core/renderer_vulkan/vk_pipeline_cache.cpp` (+62 -18) 📝 `src/video_core/renderer_vulkan/vk_pipeline_cache.h` (+20 -7) 📝 `src/video_core/renderer_vulkan/vk_presenter.h` (+8 -0) 📝 `src/video_core/renderer_vulkan/vk_rasterizer.h` (+4 -0) </details> ### 📄 Description ![image](https://github.com/user-attachments/assets/d5180aa0-83a5-424b-9f9e-47855cca7b9f) --- <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:46 +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#2254
No description provided.