Files
OrcaSlicer-bambulab/resources/shaders/printbed.vs
T

11 lines
148 B
GLSL
Raw Normal View History

2019-02-20 15:23:23 +01:00
#version 110
attribute vec2 v_tex_coords;
varying vec2 tex_coords;
void main()
{
gl_Position = ftransform();
tex_coords = v_tex_coords;
}