1 | /* |
---|---|
2 | * Copyright 2018 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 GrFillRRectOp_DEFINED |
9 | #define GrFillRRectOp_DEFINED |
10 | |
11 | #include "include/private/GrTypesPriv.h" |
12 | |
13 | class GrCaps; |
14 | class GrDrawOp; |
15 | class GrPaint; |
16 | class GrRecordingContext; |
17 | class SkMatrix; |
18 | class SkRRect; |
19 | |
20 | namespace GrFillRRectOp { |
21 | std::unique_ptr<GrDrawOp> Make(GrRecordingContext*, |
22 | GrPaint&&, |
23 | const SkMatrix& viewMatrix, |
24 | const SkRRect&, |
25 | GrAAType); |
26 | }; |
27 | |
28 | #endif |
29 |