Skip to content

Commit

Permalink
Косметика кода.
Browse files Browse the repository at this point in the history
  • Loading branch information
v0lt committed May 26, 2024
1 parent 834b17c commit 427ae06
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Shaders/d3d9/fixconvert_hlg_to_sdr.hlsl
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
sampler s0 : register(s0);
float LuminanceScale : register(c0);
float4 parameters : register(c0);
#define LuminanceScale parameters[0]
#define param2 parameters[1]

#include "../convert/conv_matrix.hlsl"
#include "../convert/hlg.hlsl"
Expand Down
4 changes: 3 additions & 1 deletion Shaders/d3d9/fixconvert_pq_to_sdr.hlsl
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
sampler s0 : register(s0);
float LuminanceScale : register(c0);
float4 parameters : register(c0);
#define LuminanceScale parameters[0]
#define param2 parameters[1]

#include "../convert/conv_matrix.hlsl"
#include "../convert/st2084.hlsl"
Expand Down

0 comments on commit 427ae06

Please sign in to comment.