Brian Salomon | fc527d2 | 2016-12-14 21:07:01 -0500 | [diff] [blame^] | 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 "GrColor.h" | ||||
12 | #include "SkRefCnt.h" | ||||
13 | |||||
14 | class GrDrawOp; | ||||
15 | class SkMatrix; | ||||
16 | class SkRegion; | ||||
17 | |||||
18 | namespace GrRegionOp { | ||||
19 | sk_sp<GrDrawOp> Make(GrColor color, const SkMatrix& viewMatrix, const SkRegion& region); | ||||
20 | } | ||||
21 | |||||
22 | #endif |