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