Changeset 10890 for OpenSceneGraph/trunk/include/osg/GraphicsContext
- Timestamp:
- 12/14/09 14:42:00 (3 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/include/osg/GraphicsContext (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osg/GraphicsContext
r10747 r10890 257 257 void runOperations(); 258 258 259 typedef std::list< ref_ptr<Operation> > OperationQueue;259 typedef std::list< ref_ptr<Operation> > GraphicsOperationQueue; 260 260 261 261 /** Get the operations queue, not you must use the OperationsMutex when accessing the queue.*/ 262 OperationQueue& getOperationsQueue() { return _operations; }262 GraphicsOperationQueue& getOperationsQueue() { return _operations; } 263 263 264 264 /** Get the operations queue mutex.*/ … … 472 472 OpenThreads::Mutex _operationsMutex; 473 473 osg::ref_ptr<osg::RefBlock> _operationsBlock; 474 OperationQueue_operations;474 GraphicsOperationQueue _operations; 475 475 osg::ref_ptr<Operation> _currentOperation; 476 476
