mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-06-04 11:25:39 +08:00
10 lines
162 B
GLSL
10 lines
162 B
GLSL
#version 110
|
|
|
|
varying vec3 eye_normal;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
|
|
eye_normal = gl_NormalMatrix * gl_Normal;
|
|
}
|