blob: a424d48e9aa26a2fef5e34e80d019014490bf6e2 [file] [log] [blame]
//
// fragment_main
//
#include <metal_stdlib>
using namespace metal;
float textureSampleLevel_ae92a2(depthcube<float, access::sample> tint_symbol, sampler tint_symbol_1) {
float3 arg_2 = float3(1.0f);
uint arg_3 = 1u;
float res = tint_symbol.sample(tint_symbol_1, arg_2, level(arg_3));
return res;
}
struct VertexOutput {
float4 pos;
float prevent_dce;
};
fragment void fragment_main(device float* tint_symbol_2 [[buffer(0)]], depthcube<float, access::sample> tint_symbol_3 [[texture(0)]], sampler tint_symbol_4 [[sampler(0)]]) {
*(tint_symbol_2) = textureSampleLevel_ae92a2(tint_symbol_3, tint_symbol_4);
return;
}
//
// compute_main
//
#include <metal_stdlib>
using namespace metal;
float textureSampleLevel_ae92a2(depthcube<float, access::sample> tint_symbol, sampler tint_symbol_1) {
float3 arg_2 = float3(1.0f);
uint arg_3 = 1u;
float res = tint_symbol.sample(tint_symbol_1, arg_2, level(arg_3));
return res;
}
struct VertexOutput {
float4 pos;
float prevent_dce;
};
kernel void compute_main(device float* tint_symbol_2 [[buffer(0)]], depthcube<float, access::sample> tint_symbol_3 [[texture(0)]], sampler tint_symbol_4 [[sampler(0)]]) {
*(tint_symbol_2) = textureSampleLevel_ae92a2(tint_symbol_3, tint_symbol_4);
return;
}
//
// vertex_main
//
#include <metal_stdlib>
using namespace metal;
float textureSampleLevel_ae92a2(depthcube<float, access::sample> tint_symbol_1, sampler tint_symbol_2) {
float3 arg_2 = float3(1.0f);
uint arg_3 = 1u;
float res = tint_symbol_1.sample(tint_symbol_2, arg_2, level(arg_3));
return res;
}
struct VertexOutput {
float4 pos;
float prevent_dce;
};
struct tint_symbol {
float prevent_dce [[user(locn0)]] [[flat]];
float4 pos [[position]];
};
VertexOutput vertex_main_inner(depthcube<float, access::sample> tint_symbol_3, sampler tint_symbol_4) {
VertexOutput out = {};
out.pos = float4(0.0f);
out.prevent_dce = textureSampleLevel_ae92a2(tint_symbol_3, tint_symbol_4);
return out;
}
vertex tint_symbol vertex_main(depthcube<float, access::sample> tint_symbol_5 [[texture(0)]], sampler tint_symbol_6 [[sampler(0)]]) {
VertexOutput const inner_result = vertex_main_inner(tint_symbol_5, tint_symbol_6);
tint_symbol wrapper_result = {};
wrapper_result.pos = inner_result.pos;
wrapper_result.prevent_dce = inner_result.prevent_dce;
return wrapper_result;
}