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