From 030724a9aea346e4a9843d5842fb28c6d6c4cf1a Mon Sep 17 00:00:00 2001 From: Peter Fors Date: Thu, 9 Oct 2025 22:07:52 +0200 Subject: Rearrangement and refactoring and optimizations and more accuracy --- shaders/gl_vertex.glsl | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 shaders/gl_vertex.glsl (limited to 'shaders/gl_vertex.glsl') diff --git a/shaders/gl_vertex.glsl b/shaders/gl_vertex.glsl new file mode 100644 index 0000000..707df72 --- /dev/null +++ b/shaders/gl_vertex.glsl @@ -0,0 +1,9 @@ +in vec2 position; +in vec2 texture_coord; +out vec2 frag_texture_coord; + +void main() { + gl_Position = vec4(position, 0.0, 1.0); + frag_texture_coord = texture_coord; +} + -- cgit v1.2.3