diff options
Diffstat (limited to 'games/koala_seasons/resources/shaders/glsl100/base.vs')
| -rw-r--r-- | games/koala_seasons/resources/shaders/glsl100/base.vs | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/games/koala_seasons/resources/shaders/glsl100/base.vs b/games/koala_seasons/resources/shaders/glsl100/base.vs deleted file mode 100644 index 93e8c860..00000000 --- a/games/koala_seasons/resources/shaders/glsl100/base.vs +++ /dev/null @@ -1,25 +0,0 @@ -#version 100 - -// Input vertex attributes -attribute vec3 vertexPosition; -attribute vec2 vertexTexCoord; -attribute vec4 vertexColor; - -// Input uniform values -uniform mat4 mvp; - -// Output vertex attributes (to fragment shader) -varying vec2 fragTexCoord; -varying vec4 fragColor; - -// NOTE: Add here your custom variables - -void main() -{ - // Send vertex attributes to fragment shader - fragTexCoord = vertexTexCoord; - fragColor = vertexColor; - - // Calculate final vertex position - gl_Position = mvp*vec4(vertexPosition, 1.0); -}
\ No newline at end of file |
