2022-06-02 14:36:10 +00:00
|
|
|
void smoothstep_aad1db() {
|
2022-11-16 23:02:39 +00:00
|
|
|
float3 arg_0 = (2.0f).xxx;
|
|
|
|
float3 arg_1 = (4.0f).xxx;
|
|
|
|
float3 arg_2 = (3.0f).xxx;
|
2022-06-02 14:36:10 +00:00
|
|
|
float3 res = smoothstep(arg_0, arg_1, arg_2);
|
2021-12-08 19:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct tint_symbol {
|
|
|
|
float4 value : SV_Position;
|
|
|
|
};
|
|
|
|
|
|
|
|
float4 vertex_main_inner() {
|
2022-06-02 14:36:10 +00:00
|
|
|
smoothstep_aad1db();
|
2022-06-01 13:14:39 +00:00
|
|
|
return (0.0f).xxxx;
|
2021-12-08 19:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
void fragment_main() {
|
2022-06-02 14:36:10 +00:00
|
|
|
smoothstep_aad1db();
|
2021-12-08 19:54:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void compute_main() {
|
2022-06-02 14:36:10 +00:00
|
|
|
smoothstep_aad1db();
|
2021-12-08 19:54:08 +00:00
|
|
|
return;
|
|
|
|
}
|