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,10 @@
#version 120
/* DRAWBUFFERS:3 */
varying vec4 color;
varying vec2 texcoord;
uniform sampler2D texture;
void main() {
gl_FragData[0] = texture2D(texture,texcoord.xy)*color*0.85;
}