Skip to content

Commit

Permalink
fix(batmanak): add missing intermediate pass changes
Browse files Browse the repository at this point in the history
  • Loading branch information
clshortfuse committed Feb 4, 2025
1 parent f20ecfd commit 507f37d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/games/batmanak/tonemapper02_0xF01CCC7E.cs_5_0.hlsl
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ cbuffer cb0 : register(b0) {
if (graph_config.draw) outputColor = renodx::debug::graph::DrawEnd(outputColor, graph_config);
#endif

outputColor *= RENODX_DIFFUSE_WHITE_NITS / 80.f;
outputColor = renodx::draw::RenderIntermediatePass(outputColor);

u0[uint2(r2.x, r2.y)] = outputColor.xyzx;
// No code for instruction (needs manual fix):
Expand Down
2 changes: 1 addition & 1 deletion src/games/batmanak/tonemapper03_0x3A4E0B90.cs_5_0.hlsl
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ cbuffer cb0 : register(b0) {
if (graph_config.draw) outputColor = renodx::debug::renodx::debug::graph::DrawEnd(outputColor, graph_config);
#endif

outputColor *= RENODX_DIFFUSE_WHITE_NITS / 80.f;
outputColor = renodx::draw::RenderIntermediatePass(outputColor);

u0[uint2(r0.x, r0.y)] = outputColor.xyzx;

Expand Down

0 comments on commit 507f37d

Please sign in to comment.