Index: src/gpu/gl/debug/GrTextureUnitObj.cpp |
diff --git a/src/gpu/gl/debug/GrTextureUnitObj.cpp b/src/gpu/gl/debug/GrTextureUnitObj.cpp |
deleted file mode 100644 |
index 8de0b092cd40c641db3d7eee80703521ce738bdb..0000000000000000000000000000000000000000 |
--- a/src/gpu/gl/debug/GrTextureUnitObj.cpp |
+++ /dev/null |
@@ -1,30 +0,0 @@ |
-/* |
- * Copyright 2012 Google Inc. |
- * |
- * Use of this source code is governed by a BSD-style license that can be |
- * found in the LICENSE file. |
- */ |
- |
-#include "GrTextureUnitObj.h" |
-#include "GrTextureObj.h" |
- |
-void GrTextureUnitObj::setTexture(GrTextureObj *texture) { |
- |
- if (fTexture) { |
- GrAlwaysAssert(fTexture->getBound(this)); |
- fTexture->resetBound(this); |
- |
- GrAlwaysAssert(!fTexture->getDeleted()); |
- fTexture->unref(); |
- } |
- |
- fTexture = texture; |
- |
- if (fTexture) { |
- GrAlwaysAssert(!fTexture->getDeleted()); |
- fTexture->ref(); |
- |
- GrAlwaysAssert(!fTexture->getBound(this)); |
- fTexture->setBound(this); |
- } |
-} |