MCPcopy Create free account
hub / github.com/NVIDIAGameWorks/PhysX / popBack

Method popBack

physx/source/common/src/CmQueue.h:105–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103
104 template<class T, class AllocType>
105 T Queue<T, AllocType>::popBack()
106 {
107 PX_ASSERT(mNum>0);
108
109 mNum--;
110 mHead = (mHead-1) % (mMaxEntries);
111 return mJobQueue[mHead];
112 }
113
114 template<class T, class AllocType>
115 T Queue<T, AllocType>::back()

Callers 15

popNameMethod · 0.45
popCurrentContextMethod · 0.45
endTagMethod · 0.45
writeContentTagMethod · 0.45
popNameMethod · 0.45
popCurrentContextMethod · 0.45
endTagMethod · 0.45
writeContentTagMethod · 0.45
removeShapeMethod · 0.45
removeBodyMethod · 0.45
insertMethod · 0.45
clearNotThreadSafeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected