6 lines
94 B
GLSL
6 lines
94 B
GLSL
void main()
|
|
{
|
|
// Setting Each Pixel To Red
|
|
gl_FragColor = vec4(1.0, 1.0, 0.0, 1.0);
|
|
}
|