mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-12 00:01:43 +00:00
8345f07db2
Actually looks pretty good against the sw style world.
11 lines
163 B
GLSL
11 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;
|
|
}
|