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.
15 lines
207 B
15 lines
207 B
4 months ago
|
#version 450
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
mat4x3 m;
|
||
|
|
||
|
vec2 v2 = vec2(m);
|
||
|
vec3 v3 = vec3(m);
|
||
|
vec4 v4 = vec4(m);
|
||
|
|
||
|
ivec2 iv2 = ivec2(m);
|
||
|
ivec3 iv3 = ivec3(m);
|
||
|
ivec4 iv4 = ivec4(m);
|
||
|
}
|