| |
| /* |
| * Copyright 2011 Google Inc. |
| * |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| |
| #ifndef GrTexture_DEFINED |
| #define GrTexture_DEFINED |
| |
| #include "include/core/SkImage.h" |
| #include "include/core/SkPoint.h" |
| #include "include/core/SkRefCnt.h" |
| #include "include/gpu/GrBackendSurface.h" |
| #include "include/private/GrTypesPriv.h" |
| #include "src/gpu/GrSurface.h" |
| |
| class GrTexture : virtual public GrSurface { |
| public: |
| GrTexture* asTexture() override { return this; } |
| const GrTexture* asTexture() const override { return this; } |
| |
| virtual GrBackendTexture getBackendTexture() const = 0; |
| |
| /** |
| * This function indicates that the texture parameters (wrap mode, filtering, ...) have been |
| * changed externally to Skia. |
| */ |
| virtual void textureParamsModified() = 0; |
| |
| /** |
| * This function steals the backend texture from a uniquely owned GrTexture with no pending |
| * IO, passing it out to the caller. The GrTexture is deleted in the process. |
| * |
| * Note that if the GrTexture is not uniquely owned (no other refs), or has pending IO, this |
| * function will fail. |
| */ |
| static bool StealBackendTexture(sk_sp<GrTexture>, |
| GrBackendTexture*, |
| SkImage::BackendTextureReleaseProc*); |
| |
| GrTextureType textureType() const { return fTextureType; } |
| bool hasRestrictedSampling() const { |
| return GrTextureTypeHasRestrictedSampling(this->textureType()); |
| } |
| |
| void markMipmapsDirty(); |
| void markMipmapsClean(); |
| GrMipmapped mipmapped() const { |
| return GrMipmapped(fMipmapStatus != GrMipmapStatus::kNotAllocated); |
| } |
| bool mipmapsAreDirty() const { return fMipmapStatus != GrMipmapStatus::kValid; } |
| GrMipmapStatus mipmapStatus() const { return fMipmapStatus; } |
| int maxMipmapLevel() const { return fMaxMipmapLevel; } |
| |
| static void ComputeScratchKey(const GrCaps& caps, |
| const GrBackendFormat& format, |
| SkISize dimensions, |
| GrRenderable, |
| int sampleCnt, |
| GrMipmapped, |
| GrProtected, |
| GrScratchKey* key); |
| |
| protected: |
| GrTexture(GrGpu*, const SkISize&, GrProtected, GrTextureType, GrMipmapStatus); |
| |
| virtual bool onStealBackendTexture(GrBackendTexture*, SkImage::BackendTextureReleaseProc*) = 0; |
| |
| void computeScratchKey(GrScratchKey*) const override; |
| |
| private: |
| size_t onGpuMemorySize() const override; |
| |
| GrTextureType fTextureType; |
| GrMipmapStatus fMipmapStatus; |
| int fMaxMipmapLevel; |
| friend class GrTextureResource; |
| |
| using INHERITED = GrSurface; |
| }; |
| |
| #endif |