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.

20 lines
307 B

#version 330
varying mat4 mvp;
in vec4 v;
in mat3 am3;
in mat4 arraym[3];
out float f;
out vec4 glPos;
//out mat4 mout[2];
void main()
{
//needs complex output blocks to work: gl_Position = mvp * v;
glPos = mvp * v;
f = am3[2][1] + arraym[1][2][3];
//mout[1] = arraym[2];
}