Changeset 13191 for OpenSceneGraph/trunk/include/osgDB/ImagePager
- Timestamp:
- 06/18/13 21:09:33 (14 hours ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/include/osgDB/ImagePager (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osgDB/ImagePager
r13144 r13191 61 61 virtual ~ImageThread(); 62 62 63 bool _done;64 Mode _mode;65 ImagePager* _pager;66 std::string _name;63 bool _done; 64 Mode _mode; 65 ImagePager* _pager; 66 std::string _name; 67 67 }; 68 68 … … 80 80 virtual osg::Image* readImageFile(const std::string& fileName); 81 81 82 virtual void requestImageFile(const std::string& fileName,osg::Object* attachmentPoint, int attachmentIndex, double timeToMergeBy, const osg::FrameStamp* framestamp); 83 82 virtual void requestImageFile(const std::string& fileName, osg::Object* attachmentPoint, int attachmentIndex, double timeToMergeBy, const osg::FrameStamp* framestamp, osg::ref_ptr<osg::Referenced>& imageRequest, const osg::Referenced* options); 84 83 85 84 /** Return true if there are pending updates to the scene graph that require a call to updateSceneGraph(double). */ … … 114 113 osg::ref_ptr<osg::Image> _loadedImage; 115 114 RequestQueue* _requestQueue; 115 osg::ref_ptr<osgDB::Options> _readOptions; 116 116 117 117 };
