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