123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- /* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
- *
- * This library is open source and may be redistributed and/or modified under
- * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
- * (at your option) any later version. The full license is in LICENSE file
- * included with this distribution, and on the openscenegraph.org website.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * OpenSceneGraph Public License for more details.
- */
- #ifndef OSG_BUFFERED_VALUE
- #define OSG_BUFFERED_VALUE 1
- #include <osg/DisplaySettings>
- #include <vector>
- namespace osg {
- /** Implements a simple buffered value for values that need to be buffered on
- * a per graphics context basis.
- */
- template<class T>
- class buffered_value
- {
- public:
- inline buffered_value():
- _array(DisplaySettings::instance()->getMaxNumberOfGraphicsContexts(),0)
- {}
- inline buffered_value(unsigned int size):
- _array(size,0)
- {}
- buffered_value& operator = (const buffered_value& rhs)
- {
- _array = rhs._array;
- return *this;
- }
- inline void setAllElementsTo(const T& t) { std::fill(_array.begin(),_array.end(),t); }
- inline void clear() { _array.clear(); }
- inline bool empty() const { return _array.empty(); }
- inline unsigned int size() const { return _array.size(); }
- inline void resize(unsigned int newSize) { _array.resize(newSize,0); }
- inline T& operator[] (unsigned int pos)
- {
- // automatically resize array.
- if (_array.size()<=pos)
- _array.resize(pos+1,0);
- return _array[pos];
- }
- inline T operator[] (unsigned int pos) const
- {
- // automatically resize array.
- if (_array.size()<=pos)
- _array.resize(pos+1,0);
- return _array[pos];
- }
- protected:
- mutable std::vector<T> _array;
- };
- template<class T>
- class buffered_object
- {
- public:
- inline buffered_object():
- _array(DisplaySettings::instance()->getMaxNumberOfGraphicsContexts())
- {}
- inline buffered_object(unsigned int size):
- _array(size)
- {}
- buffered_object& operator = (const buffered_object& rhs)
- {
- _array = rhs._array;
- return *this;
- }
- inline void setAllElementsTo(const T& t) { std::fill(_array.begin(),_array.end(),t); }
- inline void clear() { _array.clear(); }
- inline bool empty() const { return _array.empty(); }
- inline unsigned int size() const { return _array.size(); }
- inline void resize(unsigned int newSize) { _array.resize(newSize); }
- inline T& operator[] (unsigned int pos)
- {
- // automatically resize array.
- if (_array.size()<=pos)
- _array.resize(pos+1);
- return _array[pos];
- }
- inline const T& operator[] (unsigned int pos) const
- {
- // automatically resize array.
- if (_array.size()<=pos)
- _array.resize(pos+1);
- return _array[pos];
- }
- protected:
- mutable std::vector<T> _array;
- };
- }
- #endif
|