dyna3/app-proto/inversive-display/src/identity.vert
Aaron Fenyes 766d56027c Ray-caster: move shaders to separate files
This properly reflects the modularity of the code, and it simplifies
indentation and syntax highlighting.
2024-08-24 11:27:19 -07:00

7 lines
79 B
GLSL

#version 300 es
in vec4 position;
void main() {
gl_Position = position;
}