mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-02-14 22:25:13 +01:00
12 lines
264 B
GLSL
12 lines
264 B
GLSL
attribute vec4 in_Position;
|
|
attribute vec3 in_Normal;
|
|
attribute vec2 in_TextureCoord0;
|
|
attribute vec4 in_TangentW;
|
|
|
|
varying vec2 v_vTexCoord;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = gm_Matrices[MATRIX_WORLD_VIEW_PROJECTION] * in_Position;
|
|
v_vTexCoord = in_TextureCoord0;
|
|
}
|