1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-01 12:01:51 +00:00
OpenMW/files/shaders/core/gui.vert
2023-02-25 11:03:39 -08:00

14 lines
206 B
GLSL

#version 430 core
layout(location = 0) out vec4 Color;
layout(location = 0) uniform sampler2D diffuseMap;
in vec4 passColor;
in vec2 uv;
void main()
{
Color = texture(diffuseMap, uv) * passColor;
}