blob: cd31c230e5e39d731a7669d951fd1a0427d058a8 [file] [log] [blame]
cbuffer cbuffer_S : register(b0, space0) {
uint4 S[1];
};
float4 func_S() {
return asfloat(S[0]);
}
[numthreads(1, 1, 1)]
void main() {
const float4 r = func_S();
return;
}