mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
409 B
Plaintext
21 lines
409 B
Plaintext
3 years ago
|
#version 120
|
||
|
|
||
|
#include "skypasses.glsl"
|
||
|
|
||
|
uniform mat4 projectionMatrix;
|
||
|
uniform int pass;
|
||
|
|
||
|
varying vec4 passColor;
|
||
|
varying vec2 diffuseMapUV;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = projectionMatrix * (gl_ModelViewMatrix * gl_Vertex);
|
||
|
passColor = gl_Color;
|
||
|
|
||
|
if (pass == PASS_CLOUDS)
|
||
|
diffuseMapUV = (gl_TextureMatrix[0] * gl_MultiTexCoord0).xy;
|
||
|
else
|
||
|
diffuseMapUV = gl_MultiTexCoord0.xy;
|
||
|
}
|