12 lines
147 B
Plaintext
12 lines
147 B
Plaintext
|
#version 110
|
||
|
|
||
|
uniform sampler2D loading_texture;
|
||
|
|
||
|
varying vec2 texcoord;
|
||
|
|
||
|
void
|
||
|
main()
|
||
|
{
|
||
|
gl_FragColor = texture2D(loading_texture, texcoord);
|
||
|
}
|