share/hedgewars/Data/Shaders/default.vs
author Wolfgang Steffens <WolfgangSteff@gmail.com>
Fri, 25 May 2012 09:00:54 +0200
changeset 7129 0ce4f478ea6c
child 7138 f8248bcba8f1
permissions -rw-r--r--
initial GLSL1.2 test version
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7129
0ce4f478ea6c initial GLSL1.2 test version
Wolfgang Steffens <WolfgangSteff@gmail.com>
parents:
diff changeset
     1
// !!!just testing!!! 
0ce4f478ea6c initial GLSL1.2 test version
Wolfgang Steffens <WolfgangSteff@gmail.com>
parents:
diff changeset
     2
// This is not GLSL 1.3+ compatible, as its using the compatibility profile!
0ce4f478ea6c initial GLSL1.2 test version
Wolfgang Steffens <WolfgangSteff@gmail.com>
parents:
diff changeset
     3
varying vec4 tint;
0ce4f478ea6c initial GLSL1.2 test version
Wolfgang Steffens <WolfgangSteff@gmail.com>
parents:
diff changeset
     4
0ce4f478ea6c initial GLSL1.2 test version
Wolfgang Steffens <WolfgangSteff@gmail.com>
parents:
diff changeset
     5
void main()
0ce4f478ea6c initial GLSL1.2 test version
Wolfgang Steffens <WolfgangSteff@gmail.com>
parents:
diff changeset
     6
{
0ce4f478ea6c initial GLSL1.2 test version
Wolfgang Steffens <WolfgangSteff@gmail.com>
parents:
diff changeset
     7
    gl_Position = ftransform();
0ce4f478ea6c initial GLSL1.2 test version
Wolfgang Steffens <WolfgangSteff@gmail.com>
parents:
diff changeset
     8
    gl_TexCoord[0] = gl_MultiTexCoord0;
0ce4f478ea6c initial GLSL1.2 test version
Wolfgang Steffens <WolfgangSteff@gmail.com>
parents:
diff changeset
     9
    tint = gl_Color;
0ce4f478ea6c initial GLSL1.2 test version
Wolfgang Steffens <WolfgangSteff@gmail.com>
parents:
diff changeset
    10
}