Added specular highlights
parent
cf024f4f72
commit
8de75c7c47
|
@ -2,21 +2,32 @@
|
|||
|
||||
uniform vec4 uColor;
|
||||
uniform vec3 uLightDirection;
|
||||
uniform vec3 uViewPosition;
|
||||
|
||||
smooth in vec4 ioFragColor;
|
||||
in vec3 ioNormal;
|
||||
in vec3 ioFragPosition;
|
||||
|
||||
out vec4 outColor;
|
||||
|
||||
void main() {
|
||||
// ambient lighting
|
||||
float ambient_strength = 0.1;
|
||||
|
||||
vec4 ambient = ambient_strength * ioFragColor;
|
||||
|
||||
// diffuse lighting
|
||||
vec3 norm = normalize(ioNormal);
|
||||
vec3 light_dir = normalize(uLightDirection);
|
||||
float diff = max(dot(norm, light_dir), 0.0);
|
||||
vec4 diffuse = diff * ioFragColor;
|
||||
|
||||
outColor = ambient + diffuse;
|
||||
// specular lighting
|
||||
vec3 view_dir = normalize(uViewPosition - ioFragPosition);
|
||||
vec3 reflect_dir = reflect(-light_dir, norm);
|
||||
|
||||
float specular_strength = 0.5;
|
||||
float spec = pow(max(dot(view_dir, reflect_dir), 0.0), 32);
|
||||
vec4 specular = specular_strength * spec * vec4(1.0, 1.0, 1.0, 1.0);
|
||||
|
||||
outColor = ambient + diffuse + specular;
|
||||
}
|
||||
|
|
|
@ -6,14 +6,19 @@ in vec3 inNormal;
|
|||
in vec2 inUV;
|
||||
in vec4 inColor;
|
||||
|
||||
uniform mat4 uModelViewProj;
|
||||
uniform mat4 uModelMatrix;
|
||||
uniform mat4 uViewMatrix;
|
||||
uniform mat4 uProjectionMatrix;
|
||||
uniform vec3 uLightDirection;
|
||||
uniform vec3 uViewPosition;
|
||||
|
||||
smooth out vec4 ioFragColor;
|
||||
out vec3 ioNormal;
|
||||
out vec3 ioFragPosition;
|
||||
|
||||
void main() {
|
||||
gl_Position = uModelViewProj * inCoord;
|
||||
gl_Position = uProjectionMatrix * uViewMatrix * uModelMatrix * inCoord;
|
||||
ioFragColor = inColor;
|
||||
ioNormal = inNormal;
|
||||
ioFragPosition = (uModelMatrix * inCoord).xyz;
|
||||
}
|
||||
|
|
|
@ -465,13 +465,15 @@ void Renderer::RenderGl() {
|
|||
// Unit cube
|
||||
glUseProgram(mDefaultProgram.mProgramId);
|
||||
|
||||
model_view_projection =
|
||||
TranslateMat44(3.0f, 0.0f, 1.0f)
|
||||
* mCamera.mViewMatrix
|
||||
* mCamera.mProjectionMatrix;
|
||||
mDefaultProgram.SetMat44("uModelViewProj", model_view_projection);
|
||||
model_matrix = TranslateMat44(3.0f, 0.0f, 1.0f);
|
||||
|
||||
mDefaultProgram.SetMat44("uModelMatrix", model_matrix);
|
||||
mDefaultProgram.SetMat44("uViewMatrix", mCamera.mViewMatrix);
|
||||
mDefaultProgram.SetMat44("uProjectionMatrix", mCamera.mProjectionMatrix);
|
||||
|
||||
mDefaultProgram.SetVec4("uColor", Vector4f (1.0f, 0.0f, 0.0f, 1.0f));
|
||||
mDefaultProgram.SetVec3("uLightDirection", mLight.mDirection);
|
||||
mDefaultProgram.SetVec3("uViewPosition", mCamera.mEye);
|
||||
gVertexArray.Bind();
|
||||
gUnitCubeMesh.Draw(GL_TRIANGLES);
|
||||
|
||||
|
|
Loading…
Reference in New Issue