mirror of
https://github.com/rene-dev/stmbl.git
synced 2026-02-06 02:02:34 +08:00
7 lines
120 B
GLSL
7 lines
120 B
GLSL
attribute vec2 coord2d;
|
|
uniform mat4 transform;
|
|
|
|
void main(void) {
|
|
gl_Position = transform * vec4(coord2d.xy, 0, 1);
|
|
}
|