gfx/skia/trunk/src/gpu/gl/debug/GrTextureObj.h

Wed, 31 Dec 2014 07:53:36 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:53:36 +0100
branch
TOR_BUG_3246
changeset 5
4ab42b5ab56c
permissions
-rw-r--r--

Correct small whitespace inconsistency, lost while renaming variables.

michael@0 1
michael@0 2 /*
michael@0 3 * Copyright 2012 Google Inc.
michael@0 4 *
michael@0 5 * Use of this source code is governed by a BSD-style license that can be
michael@0 6 * found in the LICENSE file.
michael@0 7 */
michael@0 8
michael@0 9 #ifndef GrTextureObj_DEFINED
michael@0 10 #define GrTextureObj_DEFINED
michael@0 11
michael@0 12 #include "GrFBBindableObj.h"
michael@0 13
michael@0 14 class GrTextureUnitObj;
michael@0 15
michael@0 16 ////////////////////////////////////////////////////////////////////////////////
michael@0 17 class GrTextureObj : public GrFBBindableObj {
michael@0 18 GR_DEFINE_CREATOR(GrTextureObj);
michael@0 19
michael@0 20 public:
michael@0 21 GrTextureObj()
michael@0 22 : GrFBBindableObj() {
michael@0 23 }
michael@0 24
michael@0 25 virtual ~GrTextureObj() {
michael@0 26 GrAlwaysAssert(0 == fTextureUnitReferees.count());
michael@0 27 }
michael@0 28
michael@0 29 void setBound(GrTextureUnitObj *referee) {
michael@0 30 fTextureUnitReferees.append(1, &referee);
michael@0 31 }
michael@0 32
michael@0 33 void resetBound(GrTextureUnitObj *referee) {
michael@0 34 int index = fTextureUnitReferees.find(referee);
michael@0 35 GrAlwaysAssert(0 <= index);
michael@0 36 fTextureUnitReferees.removeShuffle(index);
michael@0 37 }
michael@0 38 bool getBound(GrTextureUnitObj *referee) const {
michael@0 39 int index = fTextureUnitReferees.find(referee);
michael@0 40 return 0 <= index;
michael@0 41 }
michael@0 42 bool getBound() const {
michael@0 43 return 0 != fTextureUnitReferees.count();
michael@0 44 }
michael@0 45
michael@0 46 virtual void deleteAction() SK_OVERRIDE;
michael@0 47
michael@0 48 protected:
michael@0 49
michael@0 50 private:
michael@0 51 // texture units that bind this texture (via "glBindTexture")
michael@0 52 SkTDArray<GrTextureUnitObj *> fTextureUnitReferees;
michael@0 53
michael@0 54 typedef GrFBBindableObj INHERITED;
michael@0 55 };
michael@0 56
michael@0 57 #endif // GrTextureObj_DEFINED

mercurial