blob: 1fdd4a63d14e14c4c7536627a751a03d3907bda5 [file] [log] [blame]
/*
* Copyright 2015 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef LatticeOp_DEFINED
#define LatticeOp_DEFINED
#include "include/core/SkRefCnt.h"
#include "src/gpu/ganesh/GrSamplerState.h"
#include "src/gpu/ganesh/ops/GrOp.h"
#include <memory>
class GrColorSpaceXform;
class GrPaint;
class GrRecordingContext;
class GrSurfaceProxyView;
class SkLatticeIter;
class SkMatrix;
enum SkAlphaType : int;
struct SkRect;
namespace skgpu::ganesh::LatticeOp {
GrOp::Owner MakeNonAA(GrRecordingContext*,
GrPaint&&,
const SkMatrix& viewMatrix,
GrSurfaceProxyView view,
SkAlphaType alphaType,
sk_sp<GrColorSpaceXform>,
GrSamplerState::Filter,
std::unique_ptr<SkLatticeIter>,
const SkRect& dst);
} // namespace skgpu::ganesh::LatticeOp
#endif // LatticeOp_DEFINED