You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
652 B
29 lines
652 B
13 years ago
|
//
|
||
|
// Shader.vsh
|
||
|
// GLGameTemplate
|
||
|
//
|
||
|
// Created by Joshua Moerman on 5/4/12.
|
||
|
// Copyright (c) 2012 Vadovas. All rights reserved.
|
||
|
//
|
||
|
|
||
|
attribute vec4 position;
|
||
|
attribute vec3 normal;
|
||
|
|
||
|
varying lowp vec4 colorVarying;
|
||
|
|
||
|
uniform mat4 modelViewProjectionMatrix;
|
||
|
uniform mat3 normalMatrix;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
vec3 eyeNormal = normalize(normalMatrix * normal);
|
||
|
vec3 lightPosition = vec3(0.0, 0.0, 1.0);
|
||
|
vec4 diffuseColor = vec4(0.4, 0.4, 1.0, 1.0);
|
||
|
|
||
|
float nDotVP = max(0.0, dot(eyeNormal, normalize(lightPosition)));
|
||
|
|
||
|
colorVarying = diffuseColor * nDotVP;
|
||
|
|
||
|
gl_Position = modelViewProjectionMatrix * position;
|
||
|
}
|