blob: 6d79de0de716e2c49cc3d05cce6d7b80b8312aab [file] [log] [blame]
//
// fragment_main
//
#include <metal_stdlib>
using namespace metal;
half3 subgroupShuffle_fb4ab9() {
half3 res = simd_shuffle(half3(1.0h),1u);
return res;
}
fragment void fragment_main(device packed_half3* tint_symbol [[buffer(0)]]) {
*(tint_symbol) = packed_half3(subgroupShuffle_fb4ab9());
return;
}
//
// compute_main
//
#include <metal_stdlib>
using namespace metal;
half3 subgroupShuffle_fb4ab9() {
half3 res = simd_shuffle(half3(1.0h),1u);
return res;
}
kernel void compute_main(device packed_half3* tint_symbol [[buffer(0)]]) {
*(tint_symbol) = packed_half3(subgroupShuffle_fb4ab9());
return;
}