blob: 3d0949a56d44c13e7e146f72493c1b49f0908120 [file] [log] [blame]
Chris Dalton133944a2018-11-16 23:30:29 -05001/*
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 Dalton82eb9e72019-03-21 14:26:39 -06008#ifndef GrFillRRectOp_DEFINED
9#define GrFillRRectOp_DEFINED
Chris Dalton133944a2018-11-16 23:30:29 -050010
Robert Phillips366176b2020-02-26 11:40:50 -050011#include "include/private/GrTypesPriv.h"
Chris Dalton133944a2018-11-16 23:30:29 -050012
Robert Phillips366176b2020-02-26 11:40:50 -050013class GrCaps;
14class GrDrawOp;
15class GrPaint;
Robert Phillipsb97da532019-02-12 15:24:12 -050016class GrRecordingContext;
Robert Phillips366176b2020-02-26 11:40:50 -050017class SkMatrix;
18class SkRRect;
Robert Phillipsb97da532019-02-12 15:24:12 -050019
Robert Phillips366176b2020-02-26 11:40:50 -050020namespace GrFillRRectOp {
21 std::unique_ptr<GrDrawOp> Make(GrRecordingContext*,
Robert Phillips360ec182020-03-26 13:29:50 -040022 GrPaint&&,
Robert Phillips366176b2020-02-26 11:40:50 -050023 const SkMatrix& viewMatrix,
24 const SkRRect&,
Robert Phillips360ec182020-03-26 13:29:50 -040025 GrAAType);
John Stilesa6841be2020-08-06 14:11:56 -040026} // namespace GrFillRRectOp
Chris Dalton133944a2018-11-16 23:30:29 -050027
Chris Dalton133944a2018-11-16 23:30:29 -050028#endif