mirror of
https://github.com/3b1b/videos.git
synced 2025-08-31 21:58:59 +00:00
11 lines
No EOL
149 B
GLSL
11 lines
No EOL
149 B
GLSL
#version 330
|
|
|
|
in vec3 point;
|
|
out vec3 frag_point;
|
|
|
|
#INSERT emit_gl_Position.glsl
|
|
|
|
void main(){
|
|
frag_point = point;
|
|
emit_gl_Position(point);
|
|
} |