mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
15 lines
191 B
GLSL
15 lines
191 B
GLSL
uniform mat4 mvp_mat;
|
|
|
|
attribute vec4 tlst;
|
|
attribute vec4 vertex;
|
|
|
|
varying vec2 tst;
|
|
varying vec2 lst;
|
|
|
|
void
|
|
main (void)
|
|
{
|
|
gl_Position = mvp_mat * vertex;
|
|
tst = tlst.st;
|
|
lst = tlst.pq;
|
|
}
|