diff --git a/shaders/gbuffers_basic.vsh b/shaders/gbuffers_basic.vsh index 60d5032..cbcbc03 100644 --- a/shaders/gbuffers_basic.vsh +++ b/shaders/gbuffers_basic.vsh @@ -24,16 +24,16 @@ void main() { gl_Position = ftransform(); #endif - #ifndef NO_TWARP - #ifdef tWarp - texture_warp(); - #endif - #endif - #ifndef NON_WORLD #if worldCurvature > 0 world_curvature(); #endif #endif + + #ifndef NO_TWARP + #ifdef tWarp + texture_warp(); + #endif + #endif }