orcaslicer/resources/shaders/printbed.vs

11 lines
148 B
Text
Raw Normal View History

#version 110
attribute vec2 v_tex_coords;
varying vec2 tex_coords;
void main()
{
gl_Position = ftransform();
tex_coords = v_tex_coords;
}