blob: 478cb6c855493b9f4de12abaa976c1d04d4f6628 [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
Robert Phillipsfbf02142021-09-01 16:31:34 -04008#ifndef FillRRectOp_DEFINED
9#define FillRRectOp_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;
Robert Phillips366176b2020-02-26 11:40:50 -050015class GrPaint;
Robert Phillipsb97da532019-02-12 15:24:12 -050016class GrRecordingContext;
Robert Phillips366176b2020-02-26 11:40:50 -050017class SkMatrix;
Robert Phillipsfbf02142021-09-01 16:31:34 -040018struct SkRect;
Robert Phillipsb97da532019-02-12 15:24:12 -050019
Robert Phillipsfbf02142021-09-01 16:31:34 -040020namespace skgpu::v1::FillRRectOp {
21
Herb Derbyc76d4092020-10-07 16:46:15 -040022 GrOp::Owner Make(GrRecordingContext*,
Chris Dalton3c636f02021-07-08 14:50:57 -060023 SkArenaAlloc*,
Herb Derbyc76d4092020-10-07 16:46:15 -040024 GrPaint&&,
25 const SkMatrix& viewMatrix,
26 const SkRRect&,
Chris Dalton61d694d2021-03-22 00:00:52 -060027 const SkRect& localRect,
Chris Dalton4f447342021-03-12 12:09:12 -070028 GrAA);
Chris Dalton133944a2018-11-16 23:30:29 -050029
Robert Phillipsfbf02142021-09-01 16:31:34 -040030} // namespace skgpu::v1::FillRRectOp
31
32#endif // FillRRectOp_DEFINED