Moved shaders into separate directory

This commit is contained in:
saschawillems 2017-03-12 11:45:40 +01:00
parent 444d06e9ab
commit ed7f88fd37
7 changed files with 2 additions and 8 deletions

View file

@ -0,0 +1,24 @@
#version 450
#extension GL_ARB_separate_shader_objects : enable
#extension GL_ARB_shading_language_420pack : enable
layout (location = 0) in vec3 inNormal;
layout (location = 1) in vec3 inColor;
layout (location = 2) in vec3 inEyePos;
layout (location = 3) in vec3 inLightVec;
layout (location = 0) out vec4 outFragColor;
void main()
{
vec3 Eye = normalize(-inEyePos);
vec3 Reflected = normalize(reflect(-inLightVec, inNormal));
vec4 IAmbient = vec4(0.2, 0.2, 0.2, 1.0);
vec4 IDiffuse = vec4(0.5, 0.5, 0.5, 0.5) * max(dot(inNormal, inLightVec), 0.0);
float specular = 0.25;
vec4 ISpecular = vec4(0.5, 0.5, 0.5, 1.0) * pow(max(dot(Reflected, Eye), 0.0), 0.8) * specular;
outFragColor = vec4((IAmbient + IDiffuse) * vec4(inColor, 1.0) + ISpecular);
}

Binary file not shown.

View file

@ -0,0 +1,34 @@
#version 450
#extension GL_ARB_separate_shader_objects : enable
#extension GL_ARB_shading_language_420pack : enable
layout (location = 0) in vec4 inPos;
layout (location = 1) in vec3 inNormal;
layout (location = 2) in vec3 inColor;
layout (binding = 0) uniform UBO
{
mat4 projection;
mat4 model;
mat4 normal;
mat4 view;
vec3 lightpos;
} ubo;
layout (location = 0) out vec3 outNormal;
layout (location = 1) out vec3 outColor;
layout (location = 2) out vec3 outEyePos;
layout (location = 3) out vec3 outLightVec;
void main()
{
outNormal = normalize(mat3(ubo.normal) * inNormal);
outColor = inColor;
mat4 modelView = ubo.view * ubo.model;
vec4 pos = modelView * inPos;
outEyePos = vec3(modelView * pos);
vec4 lightPos = vec4(ubo.lightpos, 1.0) * modelView;
outLightVec = normalize(lightPos.xyz - outEyePos);
gl_Position = ubo.projection * pos;
}

Binary file not shown.