mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-17 18:30:58 +00:00
12 lines
163 B
GLSL
12 lines
163 B
GLSL
|
//precision mediump float;
|
||
|
uniform sampler2D texture;
|
||
|
|
||
|
varying vec4 color;
|
||
|
varying vec2 st;
|
||
|
|
||
|
void
|
||
|
main (void)
|
||
|
{
|
||
|
gl_FragColor = texture2D (texture, st) * color;
|
||
|
}
|