mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-21 18:02:09 +00:00
10 lines
124 B
GLSL
10 lines
124 B
GLSL
#version 110
|
|
|
|
varying vec2 tex_coords;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = ftransform();
|
|
tex_coords = gl_MultiTexCoord0.xy;
|
|
}
|