blob: 27dbbfa4a0b6fd15ea550e07d8b956127538f5fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#version 410 core
out vec4 FragColor;
in vec3 position;
in vec3 normal;
in vec2 tex;
uniform sampler2D ourTexture;
void main()
{
FragColor = vec4(normal, 1.0f);
//FragColor = vec4(tex, 1.0f, 1.0f);
//FragColor = texture(ourTexture, TexCoord);
}
|