group_bot/assets/voxygen/shaders/trail-vert.glsl
2024-06-13 19:16:24 -04:00

10 lines
157 B
GLSL

#version 440 core
#include <globals.glsl>
layout(location = 0) in vec3 v_pos;
void main() {
gl_Position = all_mat * vec4(v_pos - focus_off.xyz, 1);
}