Moved stuff

This commit is contained in:
Synthasmagoria 2026-08-28 12:08:55 +02:00
commit 5377458895
234 changed files with 12 additions and 1 deletions

View file

@ -1,12 +0,0 @@
#version 120
varying vec2 texcoord;
varying vec4 color;
varying vec2 pixel_position;
uniform sampler2D texture0;
uniform vec4 colDiffuse;
void main() {
gl_FragColor = texture2D(texture0, texcoord) * colDiffuse;
}