mirror of
https://github.com/liuk7071/ChonkyStation.git
synced 2025-04-02 10:52:38 -04:00
8 lines
No EOL
123 B
GLSL
8 lines
No EOL
123 B
GLSL
|
|
#version 330 core
|
|
in vec4 frag_colour;
|
|
out vec4 final_colour;
|
|
void main() {
|
|
final_colour = frag_colour;
|
|
}
|
|
|