2021-06-21 19:37:58 +00:00
|
|
|
static float4 gl_Position = float4(0.0f, 0.0f, 0.0f, 0.0f);
|
2021-05-18 09:24:18 +00:00
|
|
|
|
2021-06-17 14:23:05 +00:00
|
|
|
void main_1() {
|
|
|
|
gl_Position = float4(0.0f, 0.0f, 0.0f, 0.0f);
|
|
|
|
return;
|
|
|
|
}
|
2021-05-18 09:24:18 +00:00
|
|
|
|
2021-06-17 14:23:05 +00:00
|
|
|
struct main_out {
|
|
|
|
float4 gl_Position;
|
|
|
|
};
|
|
|
|
struct tint_symbol {
|
|
|
|
float4 gl_Position : SV_Position;
|
|
|
|
};
|
|
|
|
|
2021-08-04 22:15:28 +00:00
|
|
|
main_out main_inner() {
|
2021-06-17 14:23:05 +00:00
|
|
|
main_1();
|
|
|
|
const main_out tint_symbol_1 = {gl_Position};
|
2021-08-04 22:15:28 +00:00
|
|
|
return tint_symbol_1;
|
|
|
|
}
|
|
|
|
|
|
|
|
tint_symbol main() {
|
|
|
|
const main_out inner_result = main_inner();
|
|
|
|
tint_symbol wrapper_result = (tint_symbol)0;
|
|
|
|
wrapper_result.gl_Position = inner_result.gl_Position;
|
|
|
|
return wrapper_result;
|
2021-06-17 14:23:05 +00:00
|
|
|
}
|