Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(964)

Side by Side Diff: src/gpu/GrTexturePriv.h

Issue 608883003: GrResourceCache2 manages scratch texture. (Closed) Base URL: https://skia.googlesource.com/skia.git@surfimpl
Patch Set: remove todo Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/gpu/GrTextureAccess.cpp ('k') | src/gpu/SkGpuDevice.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2014 Google Inc. 2 * Copyright 2014 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef GrTexturePriv_DEFINED 8 #ifndef GrTexturePriv_DEFINED
9 #define GrTexturePriv_DEFINED 9 #define GrTexturePriv_DEFINED
10 10
(...skipping 21 matching lines...) Expand all
32 void dirtyMipMaps(bool mipMapsDirty) { fTexture->dirtyMipMaps(mipMapsDirty); } 32 void dirtyMipMaps(bool mipMapsDirty) { fTexture->dirtyMipMaps(mipMapsDirty); }
33 33
34 bool mipMapsAreDirty() const { 34 bool mipMapsAreDirty() const {
35 return GrTexture::kValid_MipMapsStatus != fTexture->fMipMapsStatus; 35 return GrTexture::kValid_MipMapsStatus != fTexture->fMipMapsStatus;
36 } 36 }
37 37
38 bool hasMipMaps() const { 38 bool hasMipMaps() const {
39 return GrTexture::kNotAllocated_MipMapsStatus != fTexture->fMipMapsStatu s; 39 return GrTexture::kNotAllocated_MipMapsStatus != fTexture->fMipMapsStatu s;
40 } 40 }
41 41
42 static GrResourceKey::ResourceType ResourceType() {
43 static const GrResourceKey::ResourceType gType = GrResourceKey::Generate ResourceType();
44 return gType;
45 }
46
42 static GrResourceKey ComputeKey(const GrGpu* gpu, 47 static GrResourceKey ComputeKey(const GrGpu* gpu,
43 const GrTextureParams* params, 48 const GrTextureParams* params,
44 const GrTextureDesc& desc, 49 const GrTextureDesc& desc,
45 const GrCacheID& cacheID); 50 const GrCacheID& cacheID);
46 static GrResourceKey ComputeScratchKey(const GrTextureDesc& desc); 51 static GrResourceKey ComputeScratchKey(const GrTextureDesc& desc);
47 static bool NeedsResizing(const GrResourceKey& key); 52 static bool NeedsResizing(const GrResourceKey& key);
48 static bool NeedsBilerp(const GrResourceKey& key); 53 static bool NeedsBilerp(const GrResourceKey& key);
49 54
50 55
51 // TODO: Move this logic and the shift values out of here and to the callers . 56 // TODO: Move this logic and the shift values out of here and to the callers .
(...skipping 21 matching lines...) Expand all
73 friend class GrTexture; // to construct/copy this type. 78 friend class GrTexture; // to construct/copy this type.
74 }; 79 };
75 80
76 inline GrTexturePriv GrTexture::texturePriv() { return GrTexturePriv(this); } 81 inline GrTexturePriv GrTexture::texturePriv() { return GrTexturePriv(this); }
77 82
78 inline const GrTexturePriv GrTexture::texturePriv () const { 83 inline const GrTexturePriv GrTexture::texturePriv () const {
79 return GrTexturePriv(const_cast<GrTexture*>(this)); 84 return GrTexturePriv(const_cast<GrTexture*>(this));
80 } 85 }
81 86
82 #endif 87 #endif
OLDNEW
« no previous file with comments | « src/gpu/GrTextureAccess.cpp ('k') | src/gpu/SkGpuDevice.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698