summaryrefslogtreecommitdiff
path: root/gfx/gl/shaders/fixedPoint.vs
blob: 5cfe9b364057684d0e0d3a75dba259a2f46dcd42 (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 mat3 model = mat3(1);
const vec3 modelPos = ivec3(0);

include(`commonPoint.glsl')