Files
dl/third/JoltPhysics/Assets/Shaders/VK/UIPixelShaderUntextured.frag
T
2026-09-16 14:07:40 +08:00

11 lines
125 B
GLSL
Vendored

#version 450
layout(location = 0) in vec4 iColor;
layout(location = 0) out vec4 oColor;
void main()
{
oColor = iColor;
}