blob: f14cccd0dd81e58a01859f39b14f70a45b246a96 [file] [log] [blame]
struct frexp_result {
float fract;
int exp;
};
[numthreads(1, 1, 1)]
void main() {
const frexp_result res = {0.625f, 1};
const float fract = res.fract;
const int exp = res.exp;
return;
}