17 lines
396 B
Plaintext
17 lines
396 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
|
|
struct modf_result {
|
|
float fract;
|
|
float whole;
|
|
};
|
|
kernel void tint_symbol() {
|
|
modf_result const tint_symbol_1 = modf_result{.fract=0.230000019f, .whole=1.0f};
|
|
float const fract = tint_symbol_1.fract;
|
|
modf_result const tint_symbol_2 = modf_result{.fract=0.230000019f, .whole=1.0f};
|
|
float const whole = tint_symbol_2.whole;
|
|
return;
|
|
}
|
|
|