pathfinder/resources/shaders/gl3/stencil.vs.glsl

21 lines
132 B
GLSL

#version {{version}}
precision highp float;
in vec3 aPosition;
void main(){
gl_Position = vec4(aPosition, 1.0);
}