-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshader.vert
60 lines (50 loc) · 1.86 KB
/
shader.vert
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/**
* Copyright (C) 2016 Nigel Williams
*
* Vulkan Free Surface Modeling Engine (VFSME) is free software:
* you can redistribute it and/or modify it under the terms of the
* GNU Lesser General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#version 450
#extension GL_ARB_separate_shader_objects : enable
layout(location = 0) in vec3 inPosition;
layout(location = 1) in vec3 inColor;
layout(location = 3) in vec4 inNormal;
layout(location = 2) in float inHeight;
layout(binding = 0) uniform UBO {
mat4 model;
mat4 view;
mat4 proj;
vec3 lightPos;
} ubo;
layout(location = 0) out vec3 outColor;
layout(location = 1) out vec3 outNormal;
layout(location = 2) out vec3 outEyePos;
layout(location = 3) out vec3 outLightVec;
layout(location = 4) out vec4 outAmbientLight;
layout(location = 5) out vec4 outDiffuseLight;
layout(location = 6) out vec4 outSpecularLight;
layout(location = 7) out float outSpecularConst;
void main() {
outColor = inColor;
outAmbientLight = vec4(0.3, 0.3, 0.3, 1.0);
outDiffuseLight = vec4(0.7, 0.7, 0.7, 1.0);
outSpecularConst = 0.25;
outSpecularLight = vec4(0.5, 0.5, 0.5, 1.0);
outNormal = normalize(inNormal.xyz);
mat4 modelView = ubo.view * ubo.model;
vec4 pos = modelView * vec4(inPosition.x, inHeight, inPosition.z, 1.0);
outEyePos = vec3(modelView * pos);
vec4 lightPos = vec4(ubo.lightPos, 1.0) * modelView;
outLightVec = normalize(ubo.lightPos.xyz - outEyePos);
gl_Position = ubo.proj * pos;
}