combine end and nether shaders into one group of programs. for my own ease of use.

This commit is contained in:
Xonk
2023-08-03 00:23:29 -04:00
parent cfc8722bc8
commit 848cccd9da
138 changed files with 2362 additions and 4710 deletions

View File

@ -33,15 +33,11 @@ const vec2[8] offsets = vec2[8](vec2(1./8.,-3./8.),
void main() {
gl_Position = ftransform();
if(gl_Color.a < 1.0 ) gl_Position = vec4(10,10,10,1);
texcoord = (gl_MultiTexCoord0).xy;
color = gl_Color;
#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