/* * 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 GLatticeOp_DEFINED #define GLatticeOp_DEFINED #include #include "GrSamplerState.h" #include "SkRefCnt.h" class GrContext; class GrDrawOp; class GrPaint; class SkLatticeIter; class GrTextureProxy; class GrColorSpaceXform; class SkMatrix; struct SkRect; namespace GrLatticeOp { std::unique_ptr MakeNonAA(GrContext*, GrPaint&&, const SkMatrix& viewMatrix, sk_sp, sk_sp, GrSamplerState::Filter, std::unique_ptr, const SkRect& dst); }; #endif