• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 FillRRectOp_DEFINED
9 #define FillRRectOp_DEFINED
10 
11 #include "include/private/gpu/ganesh/GrTypesPriv.h"
12 #include "src/gpu/ganesh/ops/GrOp.h"
13 
14 class GrCaps;
15 class GrPaint;
16 class GrRecordingContext;
17 class SkMatrix;
18 struct SkRect;
19 
20 namespace skgpu::ganesh::FillRRectOp {
21 
22 GrOp::Owner Make(GrRecordingContext*,
23                  SkArenaAlloc*,
24                  GrPaint&&,
25                  const SkMatrix& viewMatrix,
26                  const SkRRect&,
27                  const SkRect& localRect,
28                  GrAA);
29 
30 GrOp::Owner Make(GrRecordingContext*,
31                  SkArenaAlloc*,
32                  GrPaint&&,
33                  const SkMatrix& viewMatrix,
34                  const SkRRect&,
35                  const SkMatrix& localMatrix,
36                  GrAA);
37 
38 }  // namespace skgpu::ganesh::FillRRectOp
39 
40 #endif // FillRRectOp_DEFINED
41