Changeset 10924 for OpenSceneGraph/trunk/include/osg/ImageSequence
- Timestamp:
- 01/07/10 13:14:47 (3 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/include/osg/ImageSequence (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osg/ImageSequence
r10671 r10924 17 17 #include <OpenThreads/Mutex> 18 18 #include <osg/ImageStream> 19 #include <osg/StateAttribute>20 19 21 20 #include <list> … … 102 101 Images& getImages() { return _images; } 103 102 const Images& getImages() const { return _images; } 104 105 103 104 /** ImageSequence requires a call to update(NodeVisitor*) during the update traversal so return true.*/ 105 virtual bool requiresUpdateCall() const { return true; } 106 107 /** update method for osg::Image subclasses that update themselves during the update traversal.*/ 106 108 virtual void update(NodeVisitor* nv); 107 108 struct OSG_EXPORT UpdateCallback : public osg::StateAttributeCallback109 {110 virtual void operator () (osg::StateAttribute* attr, osg::NodeVisitor* nv);111 };112 109 113 110 protected:
