blob: 6449cb7b0d6e0964f1617400be173a2664a2c4cf [file] [log] [blame]
cbuffer cbuffer_u : register(b0, space0) {
uint4 u[1];
};
[numthreads(1, 1, 1)]
void main() {
uint ubo_load = u[0].x;
const vector<float16_t, 2> x = vector<float16_t, 2>(float16_t(f16tof32(ubo_load & 0xFFFF)), float16_t(f16tof32(ubo_load >> 16)));
return;
}