You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
257 B
11 lines
257 B
attribute vec4 position;
|
|
attribute vec4 texcoord;
|
|
uniform mat4 ModelMatrix;
|
|
uniform mat4 ViewMatrix;
|
|
uniform mat4 ProjectionMatrix;
|
|
varying vec4 V_Texcoord;
|
|
void main()
|
|
{
|
|
V_Texcoord=texcoord;
|
|
gl_Position=ProjectionMatrix*ViewMatrix*ModelMatrix*position;
|
|
}
|