4 lines
116 B
GLSL
4 lines
116 B
GLSL
|
vec4 position(mat4 transform_projection, vec4 vertex_position) {
|
||
|
return transform_projection * vertex_position;
|
||
|
}
|