add v1.541 (Extreme)

This commit is contained in:
2025-11-18 08:49:24 +01:00
commit f2788f598f
105 changed files with 10844 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#version 120
/* DRAWBUFFERS:26 */
varying vec4 color;
varying vec2 texcoord;
varying float lmcoord;
uniform sampler2D texture;
void main() {
vec4 tex = texture2D(texture, texcoord.xy)*color;
gl_FragData[0] = vec4(vec3(1.0,lmcoord,1.0),tex.a*length(tex.rgb)/1.732); //render weather infront of transparency
gl_FragData[1] = vec4(vec3(1.0,lmcoord,1.0),tex.a*length(tex.rgb)/1.732); //render weather for everything else
}