HomeSort by relevance Sort by last modified time
    Searched refs:RefCountObjectBindingPointer (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/angle/src/common/
RefCountObject.h 39 class RefCountObjectBindingPointer
42 RefCountObjectBindingPointer() : mObject(NULL) { }
43 ~RefCountObjectBindingPointer() { ASSERT(mObject == NULL); } // Objects have to be released before the resource manager is destroyed, so they must be explicitly cleaned up.
57 class BindingPointer : public RefCountObjectBindingPointer
60 void set(ObjectType *newObject) { RefCountObjectBindingPointer::set(newObject); }
61 ObjectType *get() const { return static_cast<ObjectType*>(RefCountObjectBindingPointer::get()); }
66 class FramebufferTextureBindingPointer : public RefCountObjectBindingPointer
73 RefCountObjectBindingPointer::set(newObject);
79 ObjectType *get() const { return static_cast<ObjectType*>(RefCountObjectBindingPointer::get()); }
93 class OffsetBindingPointer : public RefCountObjectBindingPointer
    [all...]
RefCountObject.cpp 40 void RefCountObjectBindingPointer::set(RefCountObject *newObject)

Completed in 68 milliseconds