blob: 19af7e8e9743930f92cc772ae1ea8812efd090e0 [file] [log] [blame]
cbuffer cbuffer_uniforms : register(b4, space1) {
uint4 uniforms[1];
};
[numthreads(1, 1, 1)]
void main() {
float2x4 m1 = float2x4((0.0f).xxxx, (0.0f).xxxx);
m1[uniforms[0u].x] = (1.0f).xxxx;
}