2022-11-23 19:57:00 +00:00
|
|
|
struct modf_result_vec2_f32 {
|
2022-11-23 10:39:48 +00:00
|
|
|
float2 fract;
|
|
|
|
float2 whole;
|
|
|
|
};
|
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void main() {
|
2022-11-23 19:57:00 +00:00
|
|
|
const modf_result_vec2_f32 res = {float2(0.25f, 0.75f), float2(1.0f, 3.0f)};
|
2022-11-23 10:39:48 +00:00
|
|
|
const float2 fract = res.fract;
|
|
|
|
const float2 whole = res.whole;
|
|
|
|
return;
|
|
|
|
}
|