f9a9ed4846
Based entirely on @paxcut's amazing PR #1443 --------- Co-authored-by: paxcut <paxcut@outlook.com> Co-authored-by: paxcut <53811119+paxcut@users.noreply.github.com>
9 lines
100 B
GLSL
9 lines
100 B
GLSL
#version 330 core
|
|
|
|
in vec4 fragColor;
|
|
out vec4 outColor;
|
|
|
|
void main() {
|
|
outColor = fragColor;
|
|
}
|