Skip to content

Commit 6dfadea

Browse files
committed
reorder
1 parent 90a5243 commit 6dfadea

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/engine/renderer/gl_shader.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2842,8 +2842,8 @@ GLShader_cameraEffects::GLShader_cameraEffects() :
28422842
u_ViewWidth( this ),
28432843
u_ViewHeight( this ),
28442844
u_Tonemap( this ),
2845-
u_TonemapAdaptiveExposure( this ),
28462845
u_TonemapParms( this ),
2846+
u_TonemapAdaptiveExposure( this ),
28472847
u_TonemapParms2( this ),
28482848
u_Exposure( this ),
28492849
u_InverseGamma( this ) {
@@ -3103,9 +3103,9 @@ GlobalUBOProxy::GlobalUBOProxy() :
31033103
u_numLights( this ),
31043104
u_ColorModulate( this ),
31053105
u_InverseGamma( this ),
3106-
u_TonemapParms2( this ),
3107-
u_TonemapAdaptiveExposure( this ),
31083106
u_Tonemap( this ),
31093107
u_TonemapParms( this ),
3108+
u_TonemapAdaptiveExposure( this ),
3109+
u_TonemapParms2( this ),
31103110
u_Exposure( this ) {
31113111
}

src/engine/renderer/gl_shader.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3300,8 +3300,8 @@ class GLShader_cameraEffects :
33003300
public u_ViewWidth,
33013301
public u_ViewHeight,
33023302
public u_Tonemap,
3303-
public u_TonemapAdaptiveExposure,
33043303
public u_TonemapParms,
3304+
public u_TonemapAdaptiveExposure,
33053305
public u_TonemapParms2,
33063306
public u_Exposure,
33073307
public u_InverseGamma
@@ -3531,10 +3531,10 @@ class GlobalUBOProxy :
35313531
public u_numLights,
35323532
public u_ColorModulate,
35333533
public u_InverseGamma,
3534-
public u_TonemapParms2,
3535-
public u_TonemapAdaptiveExposure,
35363534
public u_Tonemap,
35373535
public u_TonemapParms,
3536+
public u_TonemapAdaptiveExposure,
3537+
public u_TonemapParms2,
35383538
public u_Exposure {
35393539

35403540
public:

0 commit comments

Comments
 (0)