blob: 6fb1ff2d91c8af3fe4a269948d63dd6778b46bbc [file] [log] [blame]
//
// fragment_main
//
#include <metal_stdlib>
using namespace metal;
float4 textureSampleLevel_b7c55c(texture2d_array<float, access::sample> tint_symbol, sampler tint_symbol_1) {
float4 res = tint_symbol.sample(tint_symbol_1, float2(1.0f), max(0, 1), level(1.0f), int2(1));
return res;
}
struct VertexOutput {
float4 pos;
float4 prevent_dce;
};
fragment void fragment_main(device float4* tint_symbol_2 [[buffer(0)]], texture2d_array<float, access::sample> tint_symbol_3 [[texture(0)]], sampler tint_symbol_4 [[sampler(0)]]) {
*(tint_symbol_2) = textureSampleLevel_b7c55c(tint_symbol_3, tint_symbol_4);
return;
}
//
// compute_main
//
#include <metal_stdlib>
using namespace metal;
float4 textureSampleLevel_b7c55c(texture2d_array<float, access::sample> tint_symbol, sampler tint_symbol_1) {
float4 res = tint_symbol.sample(tint_symbol_1, float2(1.0f), max(0, 1), level(1.0f), int2(1));
return res;
}
struct VertexOutput {
float4 pos;
float4 prevent_dce;
};
kernel void compute_main(device float4* tint_symbol_2 [[buffer(0)]], texture2d_array<float, access::sample> tint_symbol_3 [[texture(0)]], sampler tint_symbol_4 [[sampler(0)]]) {
*(tint_symbol_2) = textureSampleLevel_b7c55c(tint_symbol_3, tint_symbol_4);
return;
}
//
// vertex_main
//
#include <metal_stdlib>
using namespace metal;
float4 textureSampleLevel_b7c55c(texture2d_array<float, access::sample> tint_symbol_1, sampler tint_symbol_2) {
float4 res = tint_symbol_1.sample(tint_symbol_2, float2(1.0f), max(0, 1), level(1.0f), int2(1));
return res;
}
struct VertexOutput {
float4 pos;
float4 prevent_dce;
};
struct tint_symbol {
float4 prevent_dce [[user(locn0)]] [[flat]];
float4 pos [[position]];
};
VertexOutput vertex_main_inner(texture2d_array<float, access::sample> tint_symbol_3, sampler tint_symbol_4) {
VertexOutput out = {};
out.pos = float4(0.0f);
out.prevent_dce = textureSampleLevel_b7c55c(tint_symbol_3, tint_symbol_4);
return out;
}
vertex tint_symbol vertex_main(texture2d_array<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;
}