oden/third-party/vendor/metal/examples/shader-dylib/test_dylib.metal
2024-03-08 11:03:01 -08:00

8 lines
146 B
Metal

#include <metal_stdlib>
using namespace metal;
float4 get_color_test(float4 inColor)
{
return float4(inColor.r, inColor.g, inColor.b, 0);
}