8 lines
123 B
GLSL
8 lines
123 B
GLSL
#version 150
|
|
|
|
uniform sampler2D t0;
|
|
|
|
void main(void) {
|
|
qgl_FragData[0].rgb = textureLod(t0, qgl_FragTexture.xy, 3).rgb;
|
|
}
|