summaryrefslogtreecommitdiff
path: root/gfx/gl/shaders/fixedPoint.vs
blob: 3cea737169eba6b3d9a120fd4020d028c54d6b2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#version 330 core
#extension GL_ARB_shading_language_420pack : enable

include(`meshIn.glsl')
include(`materialInterface.glsl')

uniform mat4 viewProjection;
uniform ivec3 viewPoint;
const mat4 model = mat4(1);
const vec3 modelPos = ivec3(0);

include(`commonPoint.glsl')