mirror of
https://github.com/bloeys/nmage.git
synced 2025-12-29 05:18:21 +00:00
10 lines
92 B
GLSL
Executable File
10 lines
92 B
GLSL
Executable File
#version 400
|
|
|
|
uniform float r;
|
|
|
|
out vec4 color;
|
|
|
|
void main() {
|
|
color = vec4(r,r,r,0);
|
|
}
|