veloren/assets/voxygen/shaders/trail-frag.glsl
2022-03-03 01:10:53 -05:00

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);
}