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