2021-07-13 12:29:26 +00:00
|
|
|
struct tint_symbol {
|
|
|
|
precise float4 value : SV_Position;
|
|
|
|
};
|
2021-07-12 12:28:52 +00:00
|
|
|
|
2021-08-04 22:15:28 +00:00
|
|
|
float4 main_inner() {
|
2022-06-01 13:14:39 +00:00
|
|
|
return (0.0f).xxxx;
|
2021-08-04 22:15:28 +00:00
|
|
|
}
|
|
|
|
|
2021-07-13 12:29:26 +00:00
|
|
|
tint_symbol main() {
|
2021-08-04 22:15:28 +00:00
|
|
|
const float4 inner_result = main_inner();
|
|
|
|
tint_symbol wrapper_result = (tint_symbol)0;
|
|
|
|
wrapper_result.value = inner_result;
|
|
|
|
return wrapper_result;
|
2021-07-13 12:29:26 +00:00
|
|
|
}
|