diff options
| author | ModMaker101 <119018978+ModMaker101@users.noreply.github.com> | 2026-03-07 04:00:38 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-07 03:00:38 -0600 |
| commit | e754bad17e5770ccbcceb45c39f31d7e8bf6ff58 (patch) | |
| tree | 924e0f3b153c62f9416d05c6a1e8c3155c33ffad /Minecraft.Client/PS3 | |
| parent | cc85ecf05af6dcc35afc1ab905ce306b04055fc9 (diff) | |
Improve gamma shader parity - fixes #611 (#790)
* Call gamma post process after `ui.render` #611
* Fixed "washed out" look.
* Improve gamma pass and cache viewport size
Diffstat (limited to 'Minecraft.Client/PS3')
| -rw-r--r-- | Minecraft.Client/PS3/PS3_Minecraft.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Minecraft.Client/PS3/PS3_Minecraft.cpp b/Minecraft.Client/PS3/PS3_Minecraft.cpp index 53b47d2d..82dd7c50 100644 --- a/Minecraft.Client/PS3/PS3_Minecraft.cpp +++ b/Minecraft.Client/PS3/PS3_Minecraft.cpp @@ -86,6 +86,7 @@ char secureFileId[CELL_SAVEDATA_SECUREFILEID_SIZE] = #include "..\..\Minecraft.Client\Tesselator.h" #include "..\Common\Console_Awards_enum.h" #include "..\..\Minecraft.Client\Options.h" +#include "..\GameRenderer.h" #include "Sentient\SentientManager.h" #include "..\..\Minecraft.World\IntCache.h" #include "..\Textures.h" @@ -1245,6 +1246,8 @@ int main() ui.tick(); ui.render(); + pMinecraft->gameRenderer->ApplyGammaPostProcess(); + // Present the frame. PIXBeginNamedEvent(0,"Frame present"); RenderManager.Present(); |
