blob: e742b903cfc483f6ac3f164252fc1226109969b1 [file] [log] [blame]
Brian Osman3b66ab62016-11-28 09:26:31 -05001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef GrImageTextureMaker_DEFINED
9#define GrImageTextureMaker_DEFINED
10
Brian Osmane8e54582016-11-28 10:06:27 -050011#include "GrTextureMaker.h"
Brian Osman3b66ab62016-11-28 09:26:31 -050012#include "SkImage.h"
13
14class SkImageCacherator;
15
16/** This class manages the conversion of generator-backed images to GrTextures. If the caching hint
17 is kAllow the image's ID is used for the cache key. */
18class GrImageTextureMaker : public GrTextureMaker {
19public:
20 GrImageTextureMaker(GrContext* context, SkImageCacherator* cacher, const SkImage* client,
21 SkImage::CachingHint chint);
22
23protected:
24 // TODO: consider overriding this, for the case where the underlying generator might be
25 // able to efficiently produce a "stretched" texture natively (e.g. picture-backed)
26 // GrTexture* generateTextureForParams(const CopyParams&) override;
27
Brian Osman61624f02016-12-09 14:51:59 -050028 GrTexture* refOriginalTexture(bool willBeMipped, SkColorSpace* dstColorSpace) override;
Brian Osman3b66ab62016-11-28 09:26:31 -050029 void makeCopyKey(const CopyParams& stretch, GrUniqueKey* paramsCopyKey,
Brian Osman61624f02016-12-09 14:51:59 -050030 SkColorSpace* dstColorSpace) override;
Brian Osman3b66ab62016-11-28 09:26:31 -050031 void didCacheCopy(const GrUniqueKey& copyKey) override;
32
33 SkAlphaType alphaType() const override;
Brian Osman61624f02016-12-09 14:51:59 -050034 sk_sp<SkColorSpace> getColorSpace(SkColorSpace* dstColorSpace) override;
Brian Osman3b66ab62016-11-28 09:26:31 -050035
36private:
37 SkImageCacherator* fCacher;
38 const SkImage* fClient;
39 GrUniqueKey fOriginalKey;
40 SkImage::CachingHint fCachingHint;
41
42 typedef GrTextureMaker INHERITED;
43};
44
45#endif