blob: c718006c4677a7c11e184d3d746685fba73a51ca [file] [log] [blame]
/*
* Copyright 2018 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrFillRRectOp_DEFINED
#define GrFillRRectOp_DEFINED
#include "include/private/GrTypesPriv.h"
class GrCaps;
class GrDrawOp;
class GrPaint;
class GrRecordingContext;
class SkMatrix;
class SkRRect;
namespace GrFillRRectOp {
std::unique_ptr<GrDrawOp> Make(GrRecordingContext*,
GrPaint&&,
const SkMatrix& viewMatrix,
const SkRRect&,
GrAAType);
};
#endif