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" |
Herb Derby | c76d409 | 2020-10-07 16:46:15 -0400 | [diff] [blame] | 12 | #include "src/gpu/ops/GrOp.h" |
Chris Dalton | 133944a | 2018-11-16 23:30:29 -0500 | [diff] [blame] | 13 | |
Robert Phillips | 366176b | 2020-02-26 11:40:50 -0500 | [diff] [blame] | 14 | class GrCaps; |
15 | class GrDrawOp; | ||||
16 | class GrPaint; | ||||
Robert Phillips | b97da53 | 2019-02-12 15:24:12 -0500 | [diff] [blame] | 17 | class GrRecordingContext; |
Robert Phillips | 366176b | 2020-02-26 11:40:50 -0500 | [diff] [blame] | 18 | class SkMatrix; |
19 | class SkRRect; | ||||
Robert Phillips | b97da53 | 2019-02-12 15:24:12 -0500 | [diff] [blame] | 20 | |
Robert Phillips | 366176b | 2020-02-26 11:40:50 -0500 | [diff] [blame] | 21 | namespace GrFillRRectOp { |
Herb Derby | c76d409 | 2020-10-07 16:46:15 -0400 | [diff] [blame] | 22 | GrOp::Owner Make(GrRecordingContext*, |
23 | GrPaint&&, | ||||
24 | const SkMatrix& viewMatrix, | ||||
25 | const SkRRect&, | ||||
Chris Dalton | 4f44734 | 2021-03-12 12:09:12 -0700 | [diff] [blame^] | 26 | GrAA); |
John Stiles | a6841be | 2020-08-06 14:11:56 -0400 | [diff] [blame] | 27 | } // namespace GrFillRRectOp |
Chris Dalton | 133944a | 2018-11-16 23:30:29 -0500 | [diff] [blame] | 28 | |
Chris Dalton | 133944a | 2018-11-16 23:30:29 -0500 | [diff] [blame] | 29 | #endif |