This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/gpu/shaders/gpu_shader_3D_passthrough_vert.glsl

9 lines
81 B
GLSL

/* Does Nothing */
in vec3 pos;
void main()
{
gl_Position = vec4(pos, 1.0);
}