summaryrefslogtreecommitdiff
path: root/pbr/1.1.lighting/gbuffer.vert
blob: c53439cd481f2943eaa0c9bc818d1f2630f55bae (plain)
1
2
3
4
5
6
7
8
9
#version 330 core

layout(location = 0) in vec3 position;
layout(location = 1) in vec3 normal;
layout(location = 2) in vec2 tex_coords;

out vert_t {
	vec2 tex_coords;
} vert;