2021-07-13 16:41:56 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
|
|
|
|
using namespace metal;
|
|
|
|
float x_200(thread float2* const x_201) {
|
2021-10-20 16:12:33 +00:00
|
|
|
float const x_212 = (*(x_201))[0];
|
2021-07-13 16:41:56 +00:00
|
|
|
return x_212;
|
|
|
|
}
|
|
|
|
|
|
|
|
void main_1() {
|
|
|
|
float2 x_11 = 0.0f;
|
|
|
|
float const x_12 = x_200(&(x_11));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
kernel void tint_symbol() {
|
|
|
|
main_1();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|