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

include(`commonPoint.glsl')