1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-24 00:23:53 +00:00
openmw/files/shaders/compatibility/gui.frag

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

12 lines
183 B
GLSL
Raw Normal View History

2021-07-22 22:55:30 +00:00
#version 120
uniform sampler2D diffuseMap;
varying vec2 diffuseMapUV;
varying vec4 passColor;
void main()
{
gl_FragData[0] = texture2D(diffuseMap, diffuseMapUV) * passColor;
}