blob: c96708b9d427db5e7fc8d32ae7307a88f83ced7b [file] [log] [blame]
cbuffer cbuffer_u : register(b0, space0) {
uint4 u[1];
};
[numthreads(1, 1, 1)]
void main() {
const uint2 x = u[0].xy;
return;
}