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