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 GrFillRRectOp_DEFINED 9 #define GrFillRRectOp_DEFINED 10 11 #include "include/private/GrTypesPriv.h" 12 #include "src/gpu/ops/GrOp.h" 13 14 class GrCaps; 15 class GrDrawOp; 16 class GrPaint; 17 class GrRecordingContext; 18 class SkMatrix; 19 class SkRRect; 20 21 namespace GrFillRRectOp { 22 GrOp::Owner Make(GrRecordingContext*, 23 GrPaint&&, 24 const SkMatrix& viewMatrix, 25 const SkRRect&, 26 const SkRect& localRect, 27 GrAA); 28 } // namespace GrFillRRectOp 29 30 #endif 31