mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-29 01:27:38 +08:00
11 lines
148 B
GLSL
11 lines
148 B
GLSL
#version 110
|
|
|
|
attribute vec2 v_tex_coords;
|
|
|
|
varying vec2 tex_coords;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = ftransform();
|
|
tex_coords = v_tex_coords;
|
|
} |