SPV: Fix #723: construct vectors from matrices.

This commit is contained in:
John Kessenich
2017-02-17 19:06:21 -07:00
parent 36852b838d
commit 0302bdf04a
4 changed files with 87 additions and 19 deletions

View File

@@ -43,4 +43,7 @@ void main()
sum34 += mat3x4(v3, f, v3, f, v3, f);
color += sum3 * m43 + sum4;
color += vec4(m43);
color += vec4(vec3(mat2(f)), 7.2);
}