10 lines
181 B
GLSL
10 lines
181 B
GLSL
#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;
|
|
} |