1/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef GrRegionOp_DEFINED
9#define GrRegionOp_DEFINED
10
11#include "include/private/GrTypesPriv.h"
12
13class GrDrawOp;
14class GrRecordingContext;
15class SkMatrix;
16class SkRegion;
17class GrPaint;
18struct GrUserStencilSettings;
19
20namespace GrRegionOp {
21/** GrAAType must be kNone or kMSAA. */
22std::unique_ptr<GrDrawOp> Make(GrRecordingContext*,
23 GrPaint&&,
24 const SkMatrix& viewMatrix,
25 const SkRegion&,
26 GrAAType,
27 const GrUserStencilSettings* stencilSettings = nullptr);
28} // namespace GrRegionOp
29
30#endif
31