mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 23:17:35 -06:00
9 lines
162 B
GLSL
9 lines
162 B
GLSL
#version 110
|
|
|
|
varying vec3 eye_normal;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
|
|
eye_normal = gl_NormalMatrix * gl_Normal;
|
|
}
|