blob: e35d3111475956c208b76808a7eb8f8222db4684 [file]
//
// fragment_main
//
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
device uint2* prevent_dce;
};
uint2 insertBits_3c7ba5() {
uint2 arg_0 = uint2(1u);
uint2 arg_1 = uint2(1u);
uint arg_2 = 1u;
uint arg_3 = 1u;
uint const v = min(arg_2, 32u);
uint2 res = insert_bits(arg_0, arg_1, v, min(arg_3, (32u - v)));
return res;
}
fragment void fragment_main(device uint2* prevent_dce [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
(*tint_module_vars.prevent_dce) = insertBits_3c7ba5();
}
//
// compute_main
//
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
device uint2* prevent_dce;
};
uint2 insertBits_3c7ba5() {
uint2 arg_0 = uint2(1u);
uint2 arg_1 = uint2(1u);
uint arg_2 = 1u;
uint arg_3 = 1u;
uint const v = min(arg_2, 32u);
uint2 res = insert_bits(arg_0, arg_1, v, min(arg_3, (32u - v)));
return res;
}
kernel void compute_main(device uint2* prevent_dce [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
(*tint_module_vars.prevent_dce) = insertBits_3c7ba5();
}
//
// vertex_main
//
#include <metal_stdlib>
using namespace metal;
struct VertexOutput {
float4 pos;
uint2 prevent_dce;
};
struct vertex_main_outputs {
float4 VertexOutput_pos [[position]];
uint2 VertexOutput_prevent_dce [[user(locn0)]] [[flat]];
};
uint2 insertBits_3c7ba5() {
uint2 arg_0 = uint2(1u);
uint2 arg_1 = uint2(1u);
uint arg_2 = 1u;
uint arg_3 = 1u;
uint const v = min(arg_2, 32u);
uint2 res = insert_bits(arg_0, arg_1, v, min(arg_3, (32u - v)));
return res;
}
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
out.prevent_dce = insertBits_3c7ba5();
return out;
}
vertex vertex_main_outputs vertex_main() {
VertexOutput const v_1 = vertex_main_inner();
vertex_main_outputs tint_wrapper_result = {};
tint_wrapper_result.VertexOutput_pos = v_1.pos;
tint_wrapper_result.VertexOutput_prevent_dce = v_1.prevent_dce;
return tint_wrapper_result;
}