fix more TAAU shenanigans in the nether

This commit is contained in:
Xonk
2023-06-11 17:28:54 -04:00
parent 0171b41502
commit 432674bc59
7 changed files with 45 additions and 45 deletions

View File

@ -127,13 +127,14 @@ void main() {
normalMat.a = 0.9;
}
gl_Position = toClipSpace3(position);
#endif
gl_Position = toClipSpace3(position);
// #ifdef TAA_UPSCALING
// gl_Position.xy = gl_Position.xy * RENDER_SCALE + RENDER_SCALE * gl_Position.w - gl_Position.w;
// #endif
#ifdef TAA
gl_Position.xy += offsets[framemod8] * gl_Position.w * texelSize;
#endif