Chris Dalton | 133944a | 2018-11-16 23:30:29 -0500 | [diff] [blame] | 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 | |
Chris Dalton | 82eb9e7 | 2019-03-21 14:26:39 -0600 | [diff] [blame] | 8 | #ifndef GrFillRRectOp_DEFINED |
| 9 | #define GrFillRRectOp_DEFINED |
Chris Dalton | 133944a | 2018-11-16 23:30:29 -0500 | [diff] [blame] | 10 | |
Robert Phillips | 366176b | 2020-02-26 11:40:50 -0500 | [diff] [blame^] | 11 | #include "include/private/GrTypesPriv.h" |
Chris Dalton | 133944a | 2018-11-16 23:30:29 -0500 | [diff] [blame] | 12 | |
Robert Phillips | 366176b | 2020-02-26 11:40:50 -0500 | [diff] [blame^] | 13 | class GrCaps; |
| 14 | class GrDrawOp; |
| 15 | class GrPaint; |
Robert Phillips | b97da53 | 2019-02-12 15:24:12 -0500 | [diff] [blame] | 16 | class GrRecordingContext; |
Robert Phillips | 366176b | 2020-02-26 11:40:50 -0500 | [diff] [blame^] | 17 | class SkMatrix; |
| 18 | class SkRRect; |
Robert Phillips | b97da53 | 2019-02-12 15:24:12 -0500 | [diff] [blame] | 19 | |
Robert Phillips | 366176b | 2020-02-26 11:40:50 -0500 | [diff] [blame^] | 20 | namespace GrFillRRectOp { |
| 21 | std::unique_ptr<GrDrawOp> Make(GrRecordingContext*, |
| 22 | GrAAType, |
| 23 | const SkMatrix& viewMatrix, |
| 24 | const SkRRect&, |
| 25 | const GrCaps&, |
| 26 | GrPaint&&); |
Chris Dalton | 133944a | 2018-11-16 23:30:29 -0500 | [diff] [blame] | 27 | }; |
| 28 | |
Chris Dalton | 133944a | 2018-11-16 23:30:29 -0500 | [diff] [blame] | 29 | #endif |