14 lines
No EOL
277 B
GLSL
14 lines
No EOL
277 B
GLSL
|
|
// these are for the programmable pipeline system
|
|
uniform mat4 modelViewProjectionMatrix;
|
|
|
|
attribute vec4 position;
|
|
attribute vec2 texcoord;
|
|
|
|
varying vec2 texCoordVarying;
|
|
|
|
void main()
|
|
{
|
|
texCoordVarying = texcoord;
|
|
gl_Position = modelViewProjectionMatrix * position;
|
|
} |