1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-27 03:35:27 +00:00
OpenMW/files/shaders/openmw_fragment.glsl

43 lines
699 B
Plaintext
Raw Normal View History

#version 120
#include "openmw_fragment.h.glsl"
uniform sampler2D reflectionMap;
vec4 mw_sampleReflectionMap(vec2 uv)
{
return texture2D(reflectionMap, uv);
}
#if @refraction_enabled
uniform sampler2D refractionMap;
uniform sampler2D refractionDepthMap;
vec4 mw_sampleRefractionMap(vec2 uv)
{
return texture2D(refractionMap, uv);
}
float mw_sampleRefractionDepthMap(vec2 uv)
{
return texture2D(refractionDepthMap, uv).x;
}
2022-05-13 18:58:00 -07:00
#endif
uniform sampler2D omw_SamplerLastShader;
vec4 mw_samplerLastShader(vec2 uv)
{
return texture2D(omw_SamplerLastShader, uv);
}
2022-07-09 22:21:48 +02:00
#if @skyBlending
uniform sampler2D sky;
vec3 mw_sampleSkyColor(vec2 uv)
{
return texture2D(sky, uv).xyz;
}
#endif