blob: da188204d0a3a6632d0c1513e7a5d4c4cf76bb6f [file] [log] [blame]
cbuffer cbuffer_u : register(b0) {
uint4 u[1];
};
[numthreads(1, 1, 1)]
void main() {
const float3 x = asfloat(u[0].xyz);
return;
}