summaryrefslogtreecommitdiffstats
path: root/third_party/rust/metal/examples/shader-dylib/test_dylib.metal
blob: 5faa4a803aeecad476dccd8e7406d19bbcf1e4a3 (plain)
1
2
3
4
5
6
7
8
#include <metal_stdlib>

using namespace metal;

float4 get_color_test(float4 inColor)
{
    return float4(inColor.r, inColor.g, inColor.b, 0);
}