[PR #1559] [MERGED] Respect game brightness settings #2171

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

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/1559
Author: @psucien
Created: 11/20/2024
Status: Merged
Merged: 11/21/2024
Merged by: @raphaelthegreat

Base: mainHead: video_out/gamma


📝 Commits (5)

  • 7ff8124 RendererVulkan -> Presenter
  • e347e32 support for Video Out gamma setting
  • 7bfb0e6 sRGB hack removed
  • bd0b27b added post process pass to presenter
  • f6b5735 splash functionality restored

📊 Changes

21 files changed (+518 additions, -120 deletions)

View changed files

📝 CMakeLists.txt (+2 -2)
📝 src/core/devtools/layer.cpp (+10 -0)
📝 src/core/libraries/gnmdriver/gnmdriver.cpp (+4 -4)
📝 src/core/libraries/videoout/driver.cpp (+13 -10)
📝 src/core/libraries/videoout/driver.h (+1 -1)
📝 src/core/libraries/videoout/video_out.cpp (+29 -0)
📝 src/core/libraries/videoout/video_out.h (+7 -0)
📝 src/imgui/renderer/imgui_core.cpp (+1 -1)
📝 src/video_core/host_shaders/CMakeLists.txt (+2 -0)
src/video_core/host_shaders/fs_tri.vert (+15 -0)
src/video_core/host_shaders/post_process.frag (+19 -0)
📝 src/video_core/renderer_vulkan/liverpool_to_vk.cpp (+4 -14)
📝 src/video_core/renderer_vulkan/liverpool_to_vk.h (+1 -1)
📝 src/video_core/renderer_vulkan/vk_pipeline_cache.cpp (+4 -5)
📝 src/video_core/renderer_vulkan/vk_presenter.cpp (+376 -63)
📝 src/video_core/renderer_vulkan/vk_presenter.h (+20 -8)
📝 src/video_core/renderer_vulkan/vk_rasterizer.cpp (+1 -1)
📝 src/video_core/texture_cache/image_view.cpp (+3 -4)
📝 src/video_core/texture_cache/image_view.h (+1 -1)
📝 src/video_core/texture_cache/texture_cache.cpp (+2 -2)

...and 1 more files

📄 Description

..also eliminates sRGB hack


🔄 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/1559 **Author:** [@psucien](https://github.com/psucien) **Created:** 11/20/2024 **Status:** ✅ Merged **Merged:** 11/21/2024 **Merged by:** [@raphaelthegreat](https://github.com/raphaelthegreat) **Base:** `main` ← **Head:** `video_out/gamma` --- ### 📝 Commits (5) - [`7ff8124`](https://github.com/shadps4-emu/shadPS4/commit/7ff8124ce23479f9c05af6632ace1798dd5ef624) `RendererVulkan` -> `Presenter` - [`e347e32`](https://github.com/shadps4-emu/shadPS4/commit/e347e3249c822fe68ed9e94c1745536a8a6cea2c) support for Video Out gamma setting - [`7bfb0e6`](https://github.com/shadps4-emu/shadPS4/commit/7bfb0e6a06a7261fc82d5552cceddb4499093523) sRGB hack removed - [`bd0b27b`](https://github.com/shadps4-emu/shadPS4/commit/bd0b27bfd6aded5c8344b04b5f1a1862c7052e61) added post process pass to presenter - [`f6b5735`](https://github.com/shadps4-emu/shadPS4/commit/f6b5735402d88bfd7d69ebe6d4cf04ad25746d5f) splash functionality restored ### 📊 Changes **21 files changed** (+518 additions, -120 deletions) <details> <summary>View changed files</summary> 📝 `CMakeLists.txt` (+2 -2) 📝 `src/core/devtools/layer.cpp` (+10 -0) 📝 `src/core/libraries/gnmdriver/gnmdriver.cpp` (+4 -4) 📝 `src/core/libraries/videoout/driver.cpp` (+13 -10) 📝 `src/core/libraries/videoout/driver.h` (+1 -1) 📝 `src/core/libraries/videoout/video_out.cpp` (+29 -0) 📝 `src/core/libraries/videoout/video_out.h` (+7 -0) 📝 `src/imgui/renderer/imgui_core.cpp` (+1 -1) 📝 `src/video_core/host_shaders/CMakeLists.txt` (+2 -0) ➕ `src/video_core/host_shaders/fs_tri.vert` (+15 -0) ➕ `src/video_core/host_shaders/post_process.frag` (+19 -0) 📝 `src/video_core/renderer_vulkan/liverpool_to_vk.cpp` (+4 -14) 📝 `src/video_core/renderer_vulkan/liverpool_to_vk.h` (+1 -1) 📝 `src/video_core/renderer_vulkan/vk_pipeline_cache.cpp` (+4 -5) 📝 `src/video_core/renderer_vulkan/vk_presenter.cpp` (+376 -63) 📝 `src/video_core/renderer_vulkan/vk_presenter.h` (+20 -8) 📝 `src/video_core/renderer_vulkan/vk_rasterizer.cpp` (+1 -1) 📝 `src/video_core/texture_cache/image_view.cpp` (+3 -4) 📝 `src/video_core/texture_cache/image_view.h` (+1 -1) 📝 `src/video_core/texture_cache/texture_cache.cpp` (+2 -2) _...and 1 more files_ </details> ### 📄 Description ..also eliminates sRGB hack --- <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:27 +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#2171
No description provided.