blob: c147fad3ccfb050fb85838a9d77ae8ec9d9e3e00 [file]
cbuffer cbuffer_u : register(b0) {
uint4 u[2];
};
float2x4 v(uint start_byte_offset) {
return float2x4(asfloat(u[(start_byte_offset / 16u)]), asfloat(u[((16u + start_byte_offset) / 16u)]));
}
[numthreads(1, 1, 1)]
void f() {
float4x2 t = transpose(v(0u));
float l = length(asfloat(u[1u]));
float a = abs(asfloat(u[0u]).ywxz.x);
}