2022-06-02 14:36:10 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
|
|
|
|
using namespace metal;
|
|
|
|
void determinant_2b62ba() {
|
2022-07-26 14:27:25 +00:00
|
|
|
float3x3 arg_0 = float3x3(float3(1.0f), float3(1.0f), float3(1.0f));
|
2022-06-02 14:36:10 +00:00
|
|
|
float res = determinant(arg_0);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct tint_symbol {
|
|
|
|
float4 value [[position]];
|
|
|
|
};
|
|
|
|
|
|
|
|
float4 vertex_main_inner() {
|
|
|
|
determinant_2b62ba();
|
|
|
|
return float4(0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
vertex tint_symbol vertex_main() {
|
|
|
|
float4 const inner_result = vertex_main_inner();
|
|
|
|
tint_symbol wrapper_result = {};
|
|
|
|
wrapper_result.value = inner_result;
|
|
|
|
return wrapper_result;
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment void fragment_main() {
|
|
|
|
determinant_2b62ba();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
kernel void compute_main() {
|
|
|
|
determinant_2b62ba();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|