7 lines
96 B
GLSL
7 lines
96 B
GLSL
varying vec2 T;
|
|
|
|
void main()
|
|
{
|
|
T = gl_MultiTexCoord0.xy;
|
|
gl_Position = ftransform();
|
|
}
|