blob: eb9a64ab3007025cd0fc21b60634f521182b4414 [file] [log] [blame]
struct modf_result {
float fract;
float whole;
};
[numthreads(1, 1, 1)]
void main() {
const modf_result tint_symbol_1 = {0.230000019f, 1.0f};
const float fract = tint_symbol_1.fract;
const modf_result tint_symbol_2 = {0.230000019f, 1.0f};
const float whole = tint_symbol_2.whole;
return;
}