blob: 8c62e343562697d7eb3b9ae3c09b0b955741fd23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#version 460 core
include(`materialOut.glsl')
in vec3 rposition;
in vec2 texCoord;
layout(binding = 0) uniform sampler2D texture0;
void
main()
{
gPosition = vec4(rposition, 1);
gNormal = vec4(0, 0, 1, 1);
gAlbedoSpec = texture(texture0, texCoord);
}
|