aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/GrTexture.h
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2014-10-24 12:46:56 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-10-24 12:46:57 -0700
commita0036c6e337f02b6553fca0e2f2c73e9b47fc23b (patch)
tree7f3eff56fb364b26a99e7a47e69d657d10d8cfdd /include/gpu/GrTexture.h
parente79a2dab91a90e26b13bc1ec9b8c6264a1ab22e4 (diff)
Delete unused method aliases and texture flag.
Diffstat (limited to 'include/gpu/GrTexture.h')
-rw-r--r--include/gpu/GrTexture.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/include/gpu/GrTexture.h b/include/gpu/GrTexture.h
index 28c3fd5cde..d02382981d 100644
--- a/include/gpu/GrTexture.h
+++ b/include/gpu/GrTexture.h
@@ -42,23 +42,6 @@ public:
*/
virtual void textureParamsModified() = 0;
- /**
- * Informational texture flags. This will be removed soon.
- */
- enum FlagBits {
- kFirstBit = (kLastPublic_GrTextureFlagBit << 1),
-
- /**
- * This texture should be returned to the texture cache when
- * it is no longer reffed
- */
- kReturnToCache_FlagBit = kFirstBit,
- };
-
- void resetFlag(GrTextureFlags flags) {
- fDesc.fFlags = fDesc.fFlags & ~flags;
- }
-
#ifdef SK_DEBUG
void validate() const {
this->INHERITED::validate();