7 lines
99 B
Plaintext
7 lines
99 B
Plaintext
|
#version 450 core
|
||
|
out vec4 sk_FragColor;
|
||
|
in float test;
|
||
|
void main() {
|
||
|
sk_FragColor.x = test;
|
||
|
}
|