3dcaf4ac16
These are harmless, but they can cause the Metal compiler to emit a warning, and these warnings are making some logs messy for Flutter. Change-Id: I21b7a3c9ae661c55bbbe8bc13d097966180e977d Reviewed-on: https://skia-review.googlesource.com/c/skia/+/496377 Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Ethan Nicholas <ethannicholas@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
14 lines
324 B
Metal
14 lines
324 B
Metal
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
using namespace metal;
|
|
struct Inputs {
|
|
};
|
|
struct Outputs {
|
|
half4 sk_FragColor [[color(0)]];
|
|
};
|
|
fragment Outputs fragmentMain(Inputs _in [[stage_in]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
|
|
Outputs _out;
|
|
(void)_out;
|
|
return _out;
|
|
}
|