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/GrTypesPriv.h" 12 #include "src/gpu/ops/GrOp.h" 13 14 class GrCaps; 15 class GrPaint; 16 class GrRecordingContext; 17 class SkMatrix; 18 struct SkRect; 19 20 namespace skgpu::v1::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 } // namespace skgpu::v1::FillRRectOp 31 32 #endif // FillRRectOp_DEFINED 33