2021-06-03 11:26:17 +00:00
|
|
|
void atan2_57fb13() {
|
|
|
|
float2 res = atan2(float2(0.0f, 0.0f), float2(0.0f, 0.0f));
|
|
|
|
}
|
|
|
|
|
2021-06-16 09:19:36 +00:00
|
|
|
struct tint_symbol {
|
|
|
|
float4 value : SV_Position;
|
|
|
|
};
|
|
|
|
|
2021-11-08 20:16:48 +00:00
|
|
|
float4 vertex_main_inner() {
|
2021-06-03 11:26:17 +00:00
|
|
|
atan2_57fb13();
|
2021-11-08 20:16:48 +00:00
|
|
|
return float4(0.0f, 0.0f, 0.0f, 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
tint_symbol vertex_main() {
|
|
|
|
const float4 inner_result = vertex_main_inner();
|
|
|
|
tint_symbol wrapper_result = (tint_symbol)0;
|
|
|
|
wrapper_result.value = inner_result;
|
|
|
|
return wrapper_result;
|
2021-06-03 11:26:17 +00:00
|
|
|
}
|
2021-06-16 09:19:36 +00:00
|
|
|
|
2021-06-03 11:26:17 +00:00
|
|
|
void fragment_main() {
|
|
|
|
atan2_57fb13();
|
|
|
|
return;
|
|
|
|
}
|
2021-06-16 09:19:36 +00:00
|
|
|
|
2021-06-03 11:26:17 +00:00
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void compute_main() {
|
|
|
|
atan2_57fb13();
|
|
|
|
return;
|
|
|
|
}
|