3DViewer
Header
Shader
FragmentColorShader.mv2shdr
FragmentTextureShader.mv2shdr
VertexColorShader.mv2shdr
VertexTextureShader.mv2shdr
Source
Textures
main.cpp
MshViewer
QtMeshViewer
Release
README.md
12 lines
122 B
Plaintext
12 lines
122 B
Plaintext
![]() |
#version 450 core
|
||
|
|
||
|
// Input
|
||
|
in vec3 fragmentColor;
|
||
|
|
||
|
// Ouput data
|
||
|
out vec3 color;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
color = fragmentColor;
|
||
|
}
|