summaryrefslogtreecommitdiff
path: root/gfx/gl/shaders/materialOut.glsl
blob: 928edf0a9f26ce6efd61a9042403aec8b0350a3b (plain)
1
2
3
4
5
6
7
8
#ifndef MATERIAL_OUT_INCLUDED
#define MATERIAL_OUT_INCLUDED

layout(location = 0) out vec4 gPosition;
layout(location = 1) out vec4 gNormal;
layout(location = 2) out vec4 gAlbedoSpec;

#endif