| 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 316dcecd93dd10472ce120575a80e5b17c63fca3..0000000000000000000000000000000000000000
|
| --- a/src/gpu/gl/debug/GrTextureUnitObj.cpp
|
| +++ /dev/null
|
| @@ -1,31 +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);
|
| - }
|
| -}
|
|
|