mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
12 lines
183 B
GLSL
12 lines
183 B
GLSL
#version 120
|
|
|
|
uniform sampler2D diffuseMap;
|
|
|
|
varying vec2 diffuseMapUV;
|
|
varying vec4 passColor;
|
|
|
|
void main()
|
|
{
|
|
gl_FragData[0] = texture2D(diffuseMap, diffuseMapUV) * passColor;
|
|
}
|