9 lines
174 B
GLSL
9 lines
174 B
GLSL
#version 450
|
|
|
|
layout(location = 0) out vec4 theColour;
|
|
|
|
layout(location = 0) in vec4 data_from_the_vertexshader;
|
|
|
|
void main() {
|
|
theColour = data_from_the_vertexshader;
|
|
}
|