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*, | ||||
Robert Phillips | 360ec18 | 2020-03-26 13:29:50 -0400 | [diff] [blame] | 22 | GrPaint&&, |
Robert Phillips | 366176b | 2020-02-26 11:40:50 -0500 | [diff] [blame] | 23 | const SkMatrix& viewMatrix, |
24 | const SkRRect&, | ||||
Robert Phillips | 360ec18 | 2020-03-26 13:29:50 -0400 | [diff] [blame] | 25 | GrAAType); |
John Stiles | a6841be | 2020-08-06 14:11:56 -0400 | [diff] [blame^] | 26 | } // namespace GrFillRRectOp |
Chris Dalton | 133944a | 2018-11-16 23:30:29 -0500 | [diff] [blame] | 27 | |
Chris Dalton | 133944a | 2018-11-16 23:30:29 -0500 | [diff] [blame] | 28 | #endif |