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 "GrTypesPriv.h"
12
13class GrDrawOp;
14class SkMatrix;
15class SkRegion;
16class GrPaint;
17struct GrUserStencilSettings;
18
19namespace GrRegionOp {
20/** GrAAType must be kNone or kMSAA. */
21std::unique_ptr<GrDrawOp> Make(GrPaint&&, const SkMatrix& viewMatrix, const SkRegion&, GrAAType,
22                               const GrUserStencilSettings* stencilSettings = nullptr);
23}
24
25#endif
26