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
13class GrCaps;
14class GrDrawOp;
15class GrPaint;
16class GrRecordingContext;
17class SkMatrix;
18class SkRRect;
19
20namespace GrFillRRectOp {
21 std::unique_ptr<GrDrawOp> Make(GrRecordingContext*,
22 GrPaint&&,
23 const SkMatrix& viewMatrix,
24 const SkRRect&,
25 GrAAType);
26} // namespace GrFillRRectOp
27
28#endif
29