blob: 47ec4ee440346178e00c2c31b16e4bc9dd56b995 [file] [log] [blame]
robertphillips@google.comdd743fe2012-04-05 14:40:53 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef GrFakeRefObj_DEFINED
9#define GrFakeRefObj_DEFINED
10
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +000011#include "SkTypes.h"
robertphillips@google.comdd743fe2012-04-05 14:40:53 +000012#include "gl/GrGLInterface.h"
13
14////////////////////////////////////////////////////////////////////////////////
15// This object is used to track the OpenGL objects. We don't use real
rmistry@google.comfbfcd562012-08-23 18:09:54 +000016// reference counting (i.e., we don't free the objects when their ref count
robertphillips@google.comdd743fe2012-04-05 14:40:53 +000017// goes to 0) so that we can detect invalid memory accesses. The refs we
18// are tracking in this class are actually OpenGL's references to the objects
19// not "ours"
20// Each object also gets a unique globally identifying ID
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +000021class GrFakeRefObj : public SkNoncopyable {
robertphillips@google.comdd743fe2012-04-05 14:40:53 +000022public:
rmistry@google.comfbfcd562012-08-23 18:09:54 +000023 GrFakeRefObj()
robertphillips@google.comdd743fe2012-04-05 14:40:53 +000024 : fRef(0)
25 , fHighRefCount(0)
26 , fMarkedForDeletion(false)
27 , fDeleted(false) {
28
robertphillips@google.com0dd84a32012-04-16 16:24:35 +000029 // source for globally unique IDs - 0 is reserved!
rmistry@google.comfbfcd562012-08-23 18:09:54 +000030 static int fNextID = 0;
robertphillips@google.comdd743fe2012-04-05 14:40:53 +000031
32 fID = ++fNextID;
33 }
34 virtual ~GrFakeRefObj() {};
35
rmistry@google.comfbfcd562012-08-23 18:09:54 +000036 void ref() {
37 fRef++;
robertphillips@google.comdd743fe2012-04-05 14:40:53 +000038 if (fHighRefCount < fRef) {
39 fHighRefCount = fRef;
40 }
41 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +000042 void unref() {
43 fRef--;
robertphillips@google.comdd743fe2012-04-05 14:40:53 +000044 GrAlwaysAssert(fRef >= 0);
45
rmistry@google.comfbfcd562012-08-23 18:09:54 +000046 // often in OpenGL a given object may still be in use when the
robertphillips@google.comdd743fe2012-04-05 14:40:53 +000047 // delete call is made. In these cases the object is marked
48 // for deletion and then freed when it is no longer in use
49 if (0 == fRef && fMarkedForDeletion) {
rmistry@google.comfbfcd562012-08-23 18:09:54 +000050 this->deleteAction();
robertphillips@google.comdd743fe2012-04-05 14:40:53 +000051 }
52 }
robertphillips@google.com0dd84a32012-04-16 16:24:35 +000053 int getRefCount() const { return fRef; }
54 int getHighRefCount() const { return fHighRefCount; }
robertphillips@google.comdd743fe2012-04-05 14:40:53 +000055
robertphillips@google.com0dd84a32012-04-16 16:24:35 +000056 GrGLuint getID() const { return fID; }
robertphillips@google.comdd743fe2012-04-05 14:40:53 +000057
robertphillips@google.com0dd84a32012-04-16 16:24:35 +000058 void setMarkedForDeletion() { fMarkedForDeletion = true; }
59 bool getMarkedForDeletion() const { return fMarkedForDeletion; }
robertphillips@google.comdd743fe2012-04-05 14:40:53 +000060
robertphillips@google.com0dd84a32012-04-16 16:24:35 +000061 bool getDeleted() const { return fDeleted; }
robertphillips@google.comdd743fe2012-04-05 14:40:53 +000062
63 // The deleteAction fires if the object has been marked for deletion but
64 // couldn't be deleted earlier due to refs
65 virtual void deleteAction() {
66 this->setDeleted();
67 }
68
69protected:
70private:
robertphillips@google.com0dd84a32012-04-16 16:24:35 +000071 int fRef; // ref count
robertphillips@google.comdd743fe2012-04-05 14:40:53 +000072 int fHighRefCount; // high water mark of the ref count
robertphillips@google.com0dd84a32012-04-16 16:24:35 +000073 GrGLuint fID; // globally unique ID
robertphillips@google.comdd743fe2012-04-05 14:40:53 +000074 bool fMarkedForDeletion;
75 // The deleted flag is only set when OpenGL thinks the object is deleted
76 // It is obviously still allocated w/in this framework
77 bool fDeleted;
78
79 // setDeleted should only ever appear in the deleteAction method!
robertphillips@google.com0dd84a32012-04-16 16:24:35 +000080 void setDeleted() { fDeleted = true; }
robertphillips@google.comdd743fe2012-04-05 14:40:53 +000081};
82
83////////////////////////////////////////////////////////////////////////////////
84// Each class derived from GrFakeRefObj should use this macro to add a
85// factory creation entry point. This entry point is used by the GrGLDebug
86// object to instantiate the various objects
87// all globally unique IDs
88#define GR_DEFINE_CREATOR(className) \
89 public: \
90 static GrFakeRefObj *create ## className() { \
91 return SkNEW(className); \
92 }
93
94#endif // GrFakeRefObj_DEFINED