blob: 63211354d9f1a2ffe5b0011ac075f4d58e1bfaf3 [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"
Herb Derbyc76d4092020-10-07 16:46:15 -040012#include "src/gpu/ops/GrOp.h"
Chris Dalton133944a2018-11-16 23:30:29 -050013
Robert Phillips366176b2020-02-26 11:40:50 -050014class GrCaps;
15class GrDrawOp;
16class GrPaint;
Robert Phillipsb97da532019-02-12 15:24:12 -050017class GrRecordingContext;
Robert Phillips366176b2020-02-26 11:40:50 -050018class SkMatrix;
19class SkRRect;
Robert Phillipsb97da532019-02-12 15:24:12 -050020
Robert Phillips366176b2020-02-26 11:40:50 -050021namespace GrFillRRectOp {
Herb Derbyc76d4092020-10-07 16:46:15 -040022 GrOp::Owner Make(GrRecordingContext*,
23 GrPaint&&,
24 const SkMatrix& viewMatrix,
25 const SkRRect&,
Chris Dalton4f447342021-03-12 12:09:12 -070026 GrAA);
John Stilesa6841be2020-08-06 14:11:56 -040027} // namespace GrFillRRectOp
Chris Dalton133944a2018-11-16 23:30:29 -050028
Chris Dalton133944a2018-11-16 23:30:29 -050029#endif