26afe80a62
Bug: oss-fuzz:48371 Change-Id: Ia92a652022985ea738791f3e2e57d360a04b05bd Reviewed-on: https://skia-review.googlesource.com/c/skia/+/554517 Commit-Queue: Ethan Nicholas <ethannicholas@google.com> Reviewed-by: John Stiles <johnstiles@google.com>
12 lines
203 B
Metal
12 lines
203 B
Metal
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
using namespace metal;
|
|
struct Inputs {
|
|
};
|
|
struct Outputs {
|
|
half4 sk_FragColor [[color(0)]];
|
|
};
|
|
struct Globals {
|
|
texture2d<half, access::read> s;
|
|
};
|