2022-03-31 22:30:10 +00:00
|
|
|
#include <metal_stdlib>
|
2022-03-31 22:30:10 +00:00
|
|
|
|
2022-03-31 22:30:10 +00:00
|
|
|
using namespace metal;
|
2022-11-09 22:04:11 +00:00
|
|
|
int tint_div(int lhs, int rhs) {
|
|
|
|
return (lhs / select(rhs, 1, bool((rhs == 0) | bool((lhs == (-2147483647 - 1)) & (rhs == -1)))));
|
|
|
|
}
|
|
|
|
|
2022-06-28 02:06:05 +00:00
|
|
|
void foo() {
|
|
|
|
thread int tint_symbol = 0;
|
|
|
|
thread float4 tint_symbol_1 = 0.0f;
|
|
|
|
thread float2x2 tint_symbol_2 = float2x2(0.0f);
|
2022-11-09 22:04:11 +00:00
|
|
|
tint_symbol = tint_div(tint_symbol, 2);
|
2022-06-28 02:06:05 +00:00
|
|
|
tint_symbol_1 = (tint_symbol_1 * float4x4(float4(0.0f), float4(0.0f), float4(0.0f), float4(0.0f)));
|
|
|
|
tint_symbol_2 = (tint_symbol_2 * 2.0f);
|
2022-03-31 22:30:10 +00:00
|
|
|
}
|
|
|
|
|