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

Side by Side Diff: include/gpu/GrTexture.h

Issue 1862043002: Refactor to separate backend object lifecycle and GpuResource budget decision (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix unrelated GrBuffer::onGpuMemorySize() lack of override keyword compile error Created 4 years, 8 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 | « include/gpu/GrSurface.h ('k') | include/gpu/GrTypesPriv.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 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #ifndef GrTexture_DEFINED 9 #ifndef GrTexture_DEFINED
10 #define GrTexture_DEFINED 10 #define GrTexture_DEFINED
(...skipping 28 matching lines...) Expand all
39 this->INHERITED::validate(); 39 this->INHERITED::validate();
40 this->validateDesc(); 40 this->validateDesc();
41 } 41 }
42 #endif 42 #endif
43 43
44 /** Access methods that are only to be used within Skia code. */ 44 /** Access methods that are only to be used within Skia code. */
45 inline GrTexturePriv texturePriv(); 45 inline GrTexturePriv texturePriv();
46 inline const GrTexturePriv texturePriv() const; 46 inline const GrTexturePriv texturePriv() const;
47 47
48 protected: 48 protected:
49 GrTexture(GrGpu*, LifeCycle, const GrSurfaceDesc&, GrSLType, bool wasMipMapD ataProvided); 49 GrTexture(GrGpu*, const GrSurfaceDesc&, GrSLType, bool wasMipMapDataProvided );
50 50
51 void validateDesc() const; 51 void validateDesc() const;
52 52
53 private: 53 private:
54 void computeScratchKey(GrScratchKey*) const override;
54 size_t onGpuMemorySize() const override; 55 size_t onGpuMemorySize() const override;
55 void dirtyMipMaps(bool mipMapsDirty); 56 void dirtyMipMaps(bool mipMapsDirty);
56 57
57 enum MipMapsStatus { 58 enum MipMapsStatus {
58 kNotAllocated_MipMapsStatus, 59 kNotAllocated_MipMapsStatus,
59 kAllocated_MipMapsStatus, 60 kAllocated_MipMapsStatus,
60 kValid_MipMapsStatus 61 kValid_MipMapsStatus
61 }; 62 };
62 63
63 GrSLType fSamplerType; 64 GrSLType fSamplerType;
64 MipMapsStatus fMipMapsStatus; 65 MipMapsStatus fMipMapsStatus;
65 int fMaxMipMapLevel; 66 int fMaxMipMapLevel;
66 67
67 friend class GrTexturePriv; 68 friend class GrTexturePriv;
68 69
69 typedef GrSurface INHERITED; 70 typedef GrSurface INHERITED;
70 }; 71 };
71 72
72 #endif 73 #endif
OLDNEW
« no previous file with comments | « include/gpu/GrSurface.h ('k') | include/gpu/GrTypesPriv.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698