brimstone/shader.frag

11 lines
141 B
GLSL
Raw Normal View History

2024-11-04 12:32:36 +13:00
#version 460
layout(location = 0) in vec4 vertColor;
layout(location = 0) out vec4 fragColor;
void main() {
fragColor = vertColor;
}