Home
last modified time | relevance | path

Searched refs:m_refCount (Results 1 – 1 of 1) sorted by relevance

/external/deqp/framework/opengl/simplereference/
DsglrReferenceContext.hpp61 int getRefCount (void) const { return m_refCount; } in getRefCount()
62 void incRefCount (void) { m_refCount += 1; } in incRefCount()
63 void decRefCount (void) { DE_ASSERT(m_refCount > 0); m_refCount -= 1; } in decRefCount()
66 NamedObject (deUint32 name) : m_name(name), m_refCount(1) {} in NamedObject()
70 int m_refCount; member in sglr::rc::NamedObject