mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 17:59:56 +00:00
dd5901d351
Multiview shaders. Refactor Frustum management Rewrite shared shadow map cull mask should respect stereo Stereo savegame screencap LocalMap refactoring use the vertex buffer hint instead of the display list patch to enable/disable display lists Character preview fixes
11 lines
192 B
GLSL
11 lines
192 B
GLSL
#version @GLSLVersion
|
|
|
|
uniform sampler2D diffuseMap;
|
|
|
|
varying vec2 diffuseMapUV;
|
|
varying vec4 passColor;
|
|
|
|
void main()
|
|
{
|
|
gl_FragData[0] = texture2D(diffuseMap, diffuseMapUV) * passColor;
|
|
}
|