mirror of
https://github.com/QIDITECH/QIDIStudio.git
synced 2026-01-31 00:48:41 +03: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;
|
|
}
|