Files
filament/third_party/glslang/Test/spv.vecMatConstruct.frag
Mathias Agopian 538f497d4d update glslang to version 15.4.0
add a nicer script to update
2025-08-11 15:44:28 -07:00

15 lines
207 B
GLSL

#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);
}