13 lines
172 B
GLSL
13 lines
172 B
GLSL
#version 450
|
|
|
|
//shader input
|
|
layout (location = 0) in vec4 inColor;
|
|
|
|
//output write
|
|
layout (location = 0) out vec4 outFragColor;
|
|
|
|
void main()
|
|
{
|
|
outFragColor = inColor;
|
|
}
|