mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-01-14 16:26:30 +01:00
11 lines
234 B
V Shell
11 lines
234 B
V Shell
|
attribute vec4 in_Position; // (x,y,z,w)
|
||
|
attribute vec2 in_TextureCoord; // (u,v)
|
||
|
|
||
|
varying vec2 v_vTexCoord;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = gm_Matrices[MATRIX_WORLD_VIEW_PROJECTION] * in_Position;
|
||
|
v_vTexCoord = in_TextureCoord;
|
||
|
}
|