This repository has been archived on 2025-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
trade_bot/assets/voxygen/shaders/trail-vert.glsl

10 lines
157 B
Plaintext
Raw Permalink Normal View History

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