blob: 05422380de76c41bf6353dbd6a33a7e7d99a56ad [file] [log] [blame]
SKIP: FAILED
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;
}