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.
12 lines
197 B
12 lines
197 B
attribute vec3 pos;
|
|
attribute vec2 texcoord;
|
|
|
|
varying vec2 V_Texcoord;
|
|
void main()
|
|
{
|
|
vec4 worldPos=vec4(pos,1.0);
|
|
V_Texcoord=texcoord;
|
|
worldPos.x*=2.0;
|
|
worldPos.y*=2.0;
|
|
gl_Position=worldPos;
|
|
}
|