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 | |||||
Robert Phillips | fbf0214 | 2021-09-01 16:31:34 -0400 | [diff] [blame^] | 8 | #ifndef FillRRectOp_DEFINED |
9 | #define FillRRectOp_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; |
Robert Phillips | 366176b | 2020-02-26 11:40:50 -0500 | [diff] [blame] | 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; |
Robert Phillips | fbf0214 | 2021-09-01 16:31:34 -0400 | [diff] [blame^] | 18 | struct SkRect; |
Robert Phillips | b97da53 | 2019-02-12 15:24:12 -0500 | [diff] [blame] | 19 | |
Robert Phillips | fbf0214 | 2021-09-01 16:31:34 -0400 | [diff] [blame^] | 20 | namespace skgpu::v1::FillRRectOp { |
21 | |||||
Herb Derby | c76d409 | 2020-10-07 16:46:15 -0400 | [diff] [blame] | 22 | GrOp::Owner Make(GrRecordingContext*, |
Chris Dalton | 3c636f0 | 2021-07-08 14:50:57 -0600 | [diff] [blame] | 23 | SkArenaAlloc*, |
Herb Derby | c76d409 | 2020-10-07 16:46:15 -0400 | [diff] [blame] | 24 | GrPaint&&, |
25 | const SkMatrix& viewMatrix, | ||||
26 | const SkRRect&, | ||||
Chris Dalton | 61d694d | 2021-03-22 00:00:52 -0600 | [diff] [blame] | 27 | const SkRect& localRect, |
Chris Dalton | 4f44734 | 2021-03-12 12:09:12 -0700 | [diff] [blame] | 28 | GrAA); |
Chris Dalton | 133944a | 2018-11-16 23:30:29 -0500 | [diff] [blame] | 29 | |
Robert Phillips | fbf0214 | 2021-09-01 16:31:34 -0400 | [diff] [blame^] | 30 | } // namespace skgpu::v1::FillRRectOp |
31 | |||||
32 | #endif // FillRRectOp_DEFINED |