blob: 21ad721232554fa4e427d3ea29b4b265e1d67f7b [file] [log] [blame]
Ben Clayton2e376a92022-10-26 18:47:02 +00001#include <metal_stdlib>
2
3using namespace metal;
4void textureStore_72fa64(texture2d_array<int, access::write> tint_symbol_1) {
Ben Clayton4b606152022-11-04 17:06:03 +00005 tint_symbol_1.write(int4(1), uint2(uint2(1u)), 1);
Ben Clayton2e376a92022-10-26 18:47:02 +00006}
7
8struct tint_symbol {
9 float4 value [[position]];
10};
11
12float4 vertex_main_inner(texture2d_array<int, access::write> tint_symbol_2) {
13 textureStore_72fa64(tint_symbol_2);
14 return float4(0.0f);
15}
16
17vertex tint_symbol vertex_main(texture2d_array<int, access::write> tint_symbol_3 [[texture(0)]]) {
18 float4 const inner_result = vertex_main_inner(tint_symbol_3);
19 tint_symbol wrapper_result = {};
20 wrapper_result.value = inner_result;
21 return wrapper_result;
22}
23
24fragment void fragment_main(texture2d_array<int, access::write> tint_symbol_4 [[texture(0)]]) {
25 textureStore_72fa64(tint_symbol_4);
26 return;
27}
28
29kernel void compute_main(texture2d_array<int, access::write> tint_symbol_5 [[texture(0)]]) {
30 textureStore_72fa64(tint_symbol_5);
31 return;
32}
33