mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
197 B
11 lines
197 B
|
10 years ago
|
in mediump vec4 position;
|
||
|
|
|
||
|
|
layout(std140) uniform matrices {
|
||
|
|
mediump mat4 transformation;
|
||
|
|
mediump mat4 projection;
|
||
|
|
};
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
gl_Position = projection*transformation*position;
|
||
|
|
}
|