Archived
1
Fork 0
This repository has been archived on 2025-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
attractor-cl/resources/Fractal.vsh
2014-04-29 11:50:47 +02:00

11 lines
145 B
GLSL

#version 330
in vec4 position;
in vec2 tex_coord;
out vec2 tex_coord_int;
void main(){
tex_coord_int = tex_coord;
gl_Position = position;
}