mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 19:50:05 +00:00
9 lines
122 B
GLSL
9 lines
122 B
GLSL
#version 330 core
|
|
uniform vec4 uColor;
|
|
|
|
layout (location = 0) out vec4 fragColor;
|
|
|
|
void main()
|
|
{
|
|
fragColor = uColor;
|
|
}
|