mirror of
https://github.com/UberGames/ioef.git
synced 2024-11-24 21:22:00 +00:00
14 lines
264 B
Text
14 lines
264 B
Text
|
attribute vec4 attr_Position;
|
||
|
attribute vec4 attr_TexCoord0;
|
||
|
|
||
|
uniform mat4 u_ModelViewProjectionMatrix;
|
||
|
|
||
|
varying vec2 var_TexCoords;
|
||
|
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = u_ModelViewProjectionMatrix * attr_Position;
|
||
|
var_TexCoords = attr_TexCoord0.st;
|
||
|
}
|