Nerfed/Nerfed.Runtime/Gui/Shaders/imgui-frag.glsl
max 1e1ed303ad Added ImGui.NET
Start working on controller.
2024-07-05 21:56:14 +02:00

13 lines
263 B
GLSL

#version 450
layout (location = 0) in vec4 color;
layout (location = 1) in vec2 texCoord;
layout(set = 2, binding = 0) uniform sampler2D Sampler;
layout (location = 0) out vec4 outputColor;
void main()
{
outputColor = color * texture(Sampler, texCoord);
}