Changeset 9867
- Timestamp:
- 03/05/09 16:31:03 (4 years ago)
- Location:
- OpenSceneGraph/trunk
- Files:
-
- 1 added
- 3 modified
-
CMakeLists.txt (modified) (1 diff)
-
include/osg/Version (modified) (1 diff)
-
src/osgWrappers/osg/AudioStream.cpp (added)
-
src/osgWrappers/osg/ImageStream.cpp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/CMakeLists.txt
r9847 r9867 29 29 SET(OPENSCENEGRAPH_MAJOR_VERSION 2) 30 30 SET(OPENSCENEGRAPH_MINOR_VERSION 9) 31 SET(OPENSCENEGRAPH_PATCH_VERSION 0)32 SET(OPENSCENEGRAPH_SOVERSION 5 5)31 SET(OPENSCENEGRAPH_PATCH_VERSION 1) 32 SET(OPENSCENEGRAPH_SOVERSION 56) 33 33 34 34 # set to 0 when not a release candidate, non zero means that any generated -
OpenSceneGraph/trunk/include/osg/Version
r9696 r9867 22 22 #define OPENSCENEGRAPH_MAJOR_VERSION 2 23 23 #define OPENSCENEGRAPH_MINOR_VERSION 9 24 #define OPENSCENEGRAPH_PATCH_VERSION 025 #define OPENSCENEGRAPH_SOVERSION 5 524 #define OPENSCENEGRAPH_PATCH_VERSION 1 25 #define OPENSCENEGRAPH_SOVERSION 56 26 26 27 27 /** -
OpenSceneGraph/trunk/src/osgWrappers/osg/ImageStream.cpp
r9775 r9867 11 11 #include <osgIntrospection/Attributes> 12 12 13 #include <osg/AudioStream> 13 14 #include <osg/CopyOp> 14 15 #include <osg/Image> … … 38 39 END_REFLECTOR 39 40 41 TYPE_NAME_ALIAS(std::vector< osg::ref_ptr< osg::AudioStream > >, osg::ImageStream::AudioStreams) 42 40 43 BEGIN_OBJECT_REFLECTOR(osg::ImageStream) 41 44 I_DeclaringFile("osg/ImageStream"); … … 153 156 "", 154 157 ""); 158 I_Method1(void, setAudioStreams, IN, const osg::ImageStream::AudioStreams &, asl, 159 Properties::NON_VIRTUAL, 160 __void__setAudioStreams__C5_AudioStreams_R1, 161 "", 162 ""); 163 I_Method0(osg::ImageStream::AudioStreams &, getAudioStreams, 164 Properties::NON_VIRTUAL, 165 __AudioStreams_R1__getAudioStreams, 166 "", 167 ""); 168 I_Method0(const osg::ImageStream::AudioStreams &, getAudioStreams, 169 Properties::NON_VIRTUAL, 170 __C5_AudioStreams_R1__getAudioStreams, 171 "", 172 ""); 155 173 I_ProtectedMethod0(void, applyLoopingMode, 156 174 Properties::VIRTUAL, … … 159 177 "", 160 178 ""); 179 I_SimpleProperty(const osg::ImageStream::AudioStreams &, AudioStreams, 180 __C5_AudioStreams_R1__getAudioStreams, 181 __void__setAudioStreams__C5_AudioStreams_R1); 161 182 I_SimpleProperty(double, Length, 162 183 __double__getLength, … … 179 200 END_REFLECTOR 180 201 202 BEGIN_VALUE_REFLECTOR(osg::ref_ptr< osg::AudioStream >) 203 I_DeclaringFile("osg/ref_ptr"); 204 I_Constructor0(____ref_ptr, 205 "", 206 ""); 207 I_Constructor1(IN, osg::AudioStream *, ptr, 208 Properties::NON_EXPLICIT, 209 ____ref_ptr__T_P1, 210 "", 211 ""); 212 I_Constructor1(IN, const osg::ref_ptr< osg::AudioStream > &, rp, 213 Properties::NON_EXPLICIT, 214 ____ref_ptr__C5_ref_ptr_R1, 215 "", 216 ""); 217 I_Method0(osg::AudioStream *, get, 218 Properties::NON_VIRTUAL, 219 __T_P1__get, 220 "", 221 ""); 222 I_Method0(bool, valid, 223 Properties::NON_VIRTUAL, 224 __bool__valid, 225 "", 226 ""); 227 I_Method0(osg::AudioStream *, release, 228 Properties::NON_VIRTUAL, 229 __T_P1__release, 230 "", 231 ""); 232 I_Method1(void, swap, IN, osg::ref_ptr< osg::AudioStream > &, rp, 233 Properties::NON_VIRTUAL, 234 __void__swap__ref_ptr_R1, 235 "", 236 ""); 237 I_SimpleProperty(osg::AudioStream *, , 238 __T_P1__get, 239 0); 240 END_REFLECTOR 241 242 STD_VECTOR_REFLECTOR(std::vector< osg::ref_ptr< osg::AudioStream > >) 243
