summaryrefslogtreecommitdiff
path: root/gfx/gl/shaders/network.frag
blob: b7e24d2c0f3365dfb6515dcb27781dc284213008 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#version 460 core
#extension GL_ARB_shading_language_include : enable

#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);
}