blob: 3a47fa0c6472449599fc80f7749e35d4e0a03e7f [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 GrTextureMaker_DEFINED
#define GrTextureMaker_DEFINED
#include "src/gpu/GrTextureProducer.h"
/**
* Base class for sources that start out as something other than a texture (encoded image,
* picture, ...).
*/
class GrTextureMaker : public GrTextureProducer {
public:
std::unique_ptr<GrFragmentProcessor> createFragmentProcessor(const SkMatrix& textureMatrix,
const SkRect* subset,
const SkRect* domain,
GrSamplerState) override;
std::unique_ptr<GrFragmentProcessor> createBicubicFragmentProcessor(
const SkMatrix& textureMatrix,
const SkRect* subset,
const SkRect* domain,
GrSamplerState::WrapMode wrapX,
GrSamplerState::WrapMode wrapY) override;
protected:
GrTextureMaker(GrRecordingContext* context, const GrImageInfo& info)
: INHERITED(context, info) {}
private:
/**
* Return the maker's "original" texture. It is the responsibility of the maker to handle any
* caching of the original if desired.
*/
virtual GrSurfaceProxyView refOriginalTextureProxyView(GrMipmapped) = 0;
GrSurfaceProxyView onView(GrMipmapped) final;
typedef GrTextureProducer INHERITED;
};
#endif