Searched defs:RefCountObjectBindingPointer (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DRefCountObject.h42 class RefCountObjectBindingPointer class in namespace:gl
45 RefCountObjectBindingPointer() : mObject(NULL) { } function in class:gl::RefCountObjectBindingPointer
46 ~RefCountObjectBindingPointer() { ASSERT(mObject == NULL); } // Objects have to be released before the resource manager is destroyed, so they must be explicitly cleaned up.
60 class BindingPointer : public RefCountObjectBindingPointer
63 void set(ObjectType *newObject) { RefCountObjectBindingPointer::set(newObject); }
64 ObjectType *get() const { return static_cast<ObjectType*>(RefCountObjectBindingPointer::get()); }

Completed in 45 milliseconds