mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-02-15 06:35:16 +01:00
13 lines
264 B
V Shell
13 lines
264 B
V Shell
![]() |
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;
|
||
|
}
|