Files
JGL/assets/shader_programs/test_vertex.glsl
Redacted 04a4cbd54d
Some checks failed
Run ReCI Build Test / Explore-Gitea-Actions (push) Failing after 1m40s
Add Attributes to Shader.
2024-08-24 23:27:10 -04:00

8 lines
114 B
GLSL

#version 120
attribute vec2 position;
void main() {
gl_Position = vec4(position.x, position.y, 1.0, 1.0);
}