mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-09-07 19:30:04 -04:00
9 lines
87 B
GLSL
9 lines
87 B
GLSL
#version 120
|
|
|
|
varying vec4 passColor;
|
|
|
|
void main()
|
|
{
|
|
gl_FragData[0] = passColor;
|
|
}
|