1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00

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 15:55:30 -07:00
#version 120
uniform sampler2D diffuseMap;
varying vec2 diffuseMapUV;
varying vec4 passColor;
void main()
{
gl_FragData[0] = texture2D(diffuseMap, diffuseMapUV) * passColor;
}