mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
10 lines
139 B
GLSL
10 lines
139 B
GLSL
#version 420 core
|
|
|
|
layout(location = 0) in vec3 f_pos;
|
|
|
|
layout(location = 0) out vec4 tgt_color;
|
|
|
|
void main() {
|
|
tgt_color = vec4(1);
|
|
}
|