1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-31 16:45:43 +00:00
openmw/files/shaders/compatibility/bs/nolighting.frag

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.2 KiB
GLSL
Raw Normal View History

2020-12-16 21:46:09 +00:00
#version 120
#pragma import_defines(FORCE_OPAQUE)
2020-12-16 21:46:09 +00:00
#if @useGPUShader4
#extension GL_EXT_gpu_shader4: require
#endif
#if @diffuseMap
uniform sampler2D diffuseMap;
varying vec2 diffuseMapUV;
#endif
varying float euclideanDepth;
varying float linearDepth;
uniform bool useFalloff;
2022-06-06 20:40:38 +00:00
uniform vec2 screenRes;
uniform float emissiveMult;
2023-02-25 19:03:39 +00:00
uniform float far;
uniform float alphaRef;
2020-12-16 21:46:09 +00:00
varying float passFalloff;
2023-02-25 19:03:39 +00:00
#include "lib/material/alpha.glsl"
2020-12-16 21:46:09 +00:00
#include "vertexcolors.glsl"
2022-06-06 20:40:38 +00:00
#include "fog.glsl"
2020-12-16 21:46:09 +00:00
void main()
{
#if @diffuseMap
gl_FragData[0] = texture2D(diffuseMap, diffuseMapUV);
gl_FragData[0].a *= coveragePreservingAlphaScale(diffuseMap, diffuseMapUV);
#else
gl_FragData[0] = vec4(1.0);
#endif
gl_FragData[0] *= getDiffuseColor();
if (useFalloff)
gl_FragData[0].a *= passFalloff;
vec4 emissionColor = getEmissionColor();
gl_FragData[0].rgb *= emissionColor.rgb * emissiveMult;
gl_FragData[0].a *= emissionColor.a * emissionColor.a; // sic
2023-02-25 19:03:39 +00:00
gl_FragData[0].a = alphaTest(gl_FragData[0].a);
2020-12-16 21:46:09 +00:00
#if defined(FORCE_OPAQUE) && FORCE_OPAQUE
gl_FragData[0].a = 1.0;
2020-12-16 21:46:09 +00:00
#endif
2023-02-25 19:03:39 +00:00
gl_FragData[0] = applyFogAtDist(gl_FragData[0], euclideanDepth, linearDepth, far);
2020-12-16 21:46:09 +00:00
}