// Filename: bufferResidencyTracker.I // Created by: drose (16Mar06) // //////////////////////////////////////////////////////////////////// // // PANDA 3D SOFTWARE // Copyright (c) Carnegie Mellon University. All rights reserved. // // All use of this software is subject to the terms of the revised BSD // license. You should have received a copy of this license along // with this source code in a file named "LICENSE." // //////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////// // Function: BufferResidencyTracker::get_inactive_nonresident // Access: Public // Description: //////////////////////////////////////////////////////////////////// INLINE BufferContextChain &BufferResidencyTracker:: get_inactive_nonresident() { return _chains[S_inactive_nonresident]; } //////////////////////////////////////////////////////////////////// // Function: BufferResidencyTracker::get_active_nonresident // Access: Public // Description: //////////////////////////////////////////////////////////////////// INLINE BufferContextChain &BufferResidencyTracker:: get_active_nonresident() { return _chains[S_active_nonresident]; } //////////////////////////////////////////////////////////////////// // Function: BufferResidencyTracker::get_inactive_resident // Access: Public // Description: //////////////////////////////////////////////////////////////////// INLINE BufferContextChain &BufferResidencyTracker:: get_inactive_resident() { return _chains[S_inactive_resident]; } //////////////////////////////////////////////////////////////////// // Function: BufferResidencyTracker::get_active_resident // Access: Public // Description: //////////////////////////////////////////////////////////////////// INLINE BufferContextChain &BufferResidencyTracker:: get_active_resident() { return _chains[S_active_resident]; }