|
Revision 13041, 0.6 kB
(checked in by robert, 15 months ago)
|
|
Ran script to remove trailing spaces and tabs
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | #include <osg/ImageStream> |
|---|
| 2 | #include <osgDB/ObjectWrapper> |
|---|
| 3 | #include <osgDB/InputStream> |
|---|
| 4 | #include <osgDB/OutputStream> |
|---|
| 5 | |
|---|
| 6 | REGISTER_OBJECT_WRAPPER( ImageStream, |
|---|
| 7 | new osg::ImageStream, |
|---|
| 8 | osg::ImageStream, |
|---|
| 9 | "osg::Object osg::Image osg::ImageStream" ) |
|---|
| 10 | { |
|---|
| 11 | BEGIN_ENUM_SERIALIZER( LoopingMode, NO_LOOPING ); |
|---|
| 12 | ADD_ENUM_VALUE( NO_LOOPING ); |
|---|
| 13 | ADD_ENUM_VALUE( LOOPING ); |
|---|
| 14 | END_ENUM_SERIALIZER(); |
|---|
| 15 | |
|---|
| 16 | ADD_LIST_SERIALIZER( AudioStreams, osg::ImageStream::AudioStreams ); |
|---|
| 17 | } |
|---|