factor/extra/gpu/demos/bunny/loading.f.glsl

12 lines
147 B
Plaintext
Raw Normal View History

2009-07-19 15:31:10 -04:00
#version 110
uniform sampler2D loading_texture;
varying vec2 texcoord;
void
main()
{
gl_FragColor = texture2D(loading_texture, texcoord);
}