mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-08 07:27:41 -06:00
9 lines
119 B
GLSL
9 lines
119 B
GLSL
#version 110
|
|
|
|
varying vec2 tex_coord;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = gl_Vertex;
|
|
tex_coord = gl_MultiTexCoord0.xy;
|
|
}
|