mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-01-29 14:25:20 +01:00
10 lines
208 B
GLSL
10 lines
208 B
GLSL
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;
|
|
}
|