mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-01-08 14:26:17 +07:00
12 lines
218 B
GLSL
12 lines
218 B
GLSL
attribute vec4 a_position;
|
|
attribute vec4 a_color;
|
|
attribute vec2 a_texCoord0;
|
|
|
|
uniform mat4 u_projTrans;
|
|
|
|
varying vec2 v_texCoord;
|
|
|
|
void main() {
|
|
v_texCoord = a_texCoord0;
|
|
gl_Position = u_projTrans * a_position;
|
|
} |