blob: 0917fdedc562ad3c39eac932ced98ff54f9ea9cc [file] [log] [blame]
//
// fragment_main
//
#include <metal_stdlib>
using namespace metal;
uint2 bitcast_81c5f5() {
half4 arg_0 = half4(1.0h);
uint2 res = as_type<uint2>(arg_0);
return res;
}
struct VertexOutput {
float4 pos;
uint2 prevent_dce;
};
fragment void fragment_main(device uint2* tint_symbol [[buffer(0)]]) {
*(tint_symbol) = bitcast_81c5f5();
return;
}
//
// compute_main
//
#include <metal_stdlib>
using namespace metal;
uint2 bitcast_81c5f5() {
half4 arg_0 = half4(1.0h);
uint2 res = as_type<uint2>(arg_0);
return res;
}
struct VertexOutput {
float4 pos;
uint2 prevent_dce;
};
kernel void compute_main(device uint2* tint_symbol [[buffer(0)]]) {
*(tint_symbol) = bitcast_81c5f5();
return;
}
//
// vertex_main
//
#include <metal_stdlib>
using namespace metal;
uint2 bitcast_81c5f5() {
half4 arg_0 = half4(1.0h);
uint2 res = as_type<uint2>(arg_0);
return res;
}
struct VertexOutput {
float4 pos;
uint2 prevent_dce;
};
struct tint_symbol {
uint2 prevent_dce [[user(locn0)]] [[flat]];
float4 pos [[position]];
};
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
out.prevent_dce = bitcast_81c5f5();
return out;
}
vertex tint_symbol vertex_main() {
VertexOutput const inner_result = vertex_main_inner();
tint_symbol wrapper_result = {};
wrapper_result.pos = inner_result.pos;
wrapper_result.prevent_dce = inner_result.prevent_dce;
return wrapper_result;
}