mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03:00
21 lines
295 B
Text
21 lines
295 B
Text
![]() |
#version 120
|
||
|
|
||
|
#include "lib/core/vertex.h.glsl"
|
||
|
|
||
|
uniform mat4 projectionMatrix;
|
||
|
|
||
|
vec4 modelToClip(vec4 pos)
|
||
|
{
|
||
|
return projectionMatrix * modelToView(pos);
|
||
|
}
|
||
|
|
||
|
vec4 modelToView(vec4 pos)
|
||
|
{
|
||
|
return gl_ModelViewMatrix * pos;
|
||
|
}
|
||
|
|
||
|
vec4 viewToClip(vec4 pos)
|
||
|
{
|
||
|
return projectionMatrix * pos;
|
||
|
}
|