Files
SWBF2-Classic-Msh-Viewer/MshViewer/Shader/FragmentColorShader.mv2shdr
Anakin 847b3cdee8 managed old tutorial implementation with classes.
Bugs: nothing is displayed
2016-09-06 15:15:29 +02:00

12 lines
122 B
Plaintext

#version 450 core
// Input
in vec3 fragmentColor;
// Ouput data
out vec3 color;
void main()
{
color = fragmentColor;
}