mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
12 lines
133 B
GLSL
12 lines
133 B
GLSL
#version 300 es
|
|
|
|
precision mediump float;
|
|
|
|
uniform mat4 transform;
|
|
|
|
in vec4 pos;
|
|
|
|
void main() {
|
|
gl_Position = transform * pos;
|
|
}
|