blob: a2c02c615aced1ae6f5e2c81146e8da75d4e7726 [file] [log] [blame]
#include <metal_stdlib>
#include <simd/simd.h>
using namespace metal;
struct Inputs {
uint3 sk_ThreadPosition;
};
struct Outputs {
};
struct Globals {
texture2d<half, access::read> src;
texture2d<half, access::write> dest;
};
kernel void computeMain(texture2d<half, access::read> src[[texture(0)]], texture2d<half, access::write> dest[[texture(1)]], uint3 sk_ThreadPosition [[thread_position_in_grid]]) {
Globals _globals{src, dest};
(void)_globals;
Inputs _in = { sk_ThreadPosition };
Outputs _out = { };
if (_in.sk_ThreadPosition.x < _globals.src.get_width() && _in.sk_ThreadPosition.y < _globals.src.get_height()) {
half4 _0_color = _globals.src.read(_in.sk_ThreadPosition.xy);
_0_color.xyz = half3(dot(_0_color.xyz, half3(0.2199999988079071h, 0.67000001668930054h, 0.10999999940395355h)));
_globals.dest.write(_0_color, _in.sk_ThreadPosition.xy);
}
return;
}