4561ecddbd
Consider it a write to a variable, similar to OpStore.
34 lines
574 B
GLSL
34 lines
574 B
GLSL
#pragma clang diagnostic ignored "-Wmissing-prototypes"
|
|
|
|
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
|
|
using namespace metal;
|
|
|
|
struct main0_out
|
|
{
|
|
float4 vo0 [[color(0)]];
|
|
float4 vo1 [[color(1)]];
|
|
};
|
|
|
|
struct main0_in
|
|
{
|
|
float4 v [[user(locn0)]];
|
|
};
|
|
|
|
static inline __attribute__((always_inline))
|
|
float4 modf_inner(thread float4& v, thread float4& vo1)
|
|
{
|
|
float4 _16 = modf(v, vo1);
|
|
return _16;
|
|
}
|
|
|
|
fragment main0_out main0(main0_in in [[stage_in]])
|
|
{
|
|
main0_out out = {};
|
|
float4 _20 = modf_inner(in.v, out.vo1);
|
|
out.vo0 = _20;
|
|
return out;
|
|
}
|
|
|