blob: be5557c3fa182c8adc3ae6e43ec62c5d4f72f027 [file] [log] [blame]
/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrShadowRRectOp_DEFINED
#define GrShadowRRectOp_DEFINED
#include <memory>
#include "src/gpu/GrColor.h"
#include "src/gpu/ops/GrOp.h"
class GrDrawOp;
class GrRecordingContext;
class SkMatrix;
class SkRRect;
namespace GrShadowRRectOp {
GrOp::Owner Make(GrRecordingContext*,
GrColor,
const SkMatrix& viewMatrix,
const SkRRect&,
SkScalar blurWidth,
SkScalar insetWidth);
} // namespace GrShadowRRectOp
#endif