summaryrefslogtreecommitdiff
path: root/shaders/shader.frag
blob: a4ce603c73c78e2b54a8d7fbd0fe7196210bab2b (plain)
1
2
3
4
5
6
7
8
#version 450

layout(location = 0) in vec4 fragColor;
layout(location = 0) out vec4 outColor;

void main() {
	outColor = fragColor;
}