Changeset 8279
- Timestamp:
- 05/07/08 16:32:39
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
OpenSceneGraph/trunk/src/osgWrappers/osg/Camera.cpp
r8142 r8279 461 461 Properties::NON_VIRTUAL, 462 462 __void__attach__BufferComponent__GLenum, 463 " ",463 "Attach a buffer with specified OpenGL internal format. ", 464 464 ""); 465 465 I_MethodWithDefaults5(void, attach, IN, osg::Camera::BufferComponent, buffer, , IN, osg::Texture *, texture, , IN, unsigned int, level, 0, IN, unsigned int, face, 0, IN, bool, mipMapGeneration, false, 466 466 Properties::NON_VIRTUAL, 467 467 __void__attach__BufferComponent__osg_Texture_P1__unsigned_int__unsigned_int__bool, 468 " ",469 " ");468 "Attach a Texture to specified buffer component. ", 469 "The level parameter controls the mip map level of the texture that is attached. The face parameter controls the face of texture cube map or z level of 3d texture. The mipMapGeneration flag controls whether mipmap generation should be done for texture. "); 470 470 I_Method2(void, attach, IN, osg::Camera::BufferComponent, buffer, IN, osg::Image *, image, 471 471 Properties::NON_VIRTUAL, 472 472 __void__attach__BufferComponent__osg_Image_P1, 473 " ",473 "Attach a Image to specified buffer component. ", 474 474 ""); 475 475 I_Method1(void, detach, IN, osg::Camera::BufferComponent, buffer, 476 476 Properties::NON_VIRTUAL, 477 477 __void__detach__BufferComponent, 478 " ",478 "Detach specified buffer component. ", 479 479 ""); 480 480 I_Method0(osg::Camera::BufferAttachmentMap &, getBufferAttachmentMap, OpenSceneGraph/trunk/src/osgWrappers/osgUtil/LineSegmentIntersector.cpp
r7654 r8279 73 73 "", 74 74 ""); 75 I_Method0(const osg::Vec3d &, setEnd,75 I_Method0(const osg::Vec3d &, getEnd, 76 76 Properties::NON_VIRTUAL, 77 __C5_osg_Vec3d_R1__ setEnd,77 __C5_osg_Vec3d_R1__getEnd, 78 78 "", 79 79 ""); … … 121 121 ""); 122 122 I_SimpleProperty(const osg::Vec3d &, End, 123 0,123 __C5_osg_Vec3d_R1__getEnd, 124 124 __void__setEnd__C5_osg_Vec3d_R1); 125 125 I_SimpleProperty(osgUtil::LineSegmentIntersector::Intersection, FirstIntersection, OpenSceneGraph/trunk/src/osgWrappers/osgViewer/View.cpp
r7852 r8279 266 266 "Convenience method for spherical display by rendering main scene to as panoramic 2:1 texture and then doing distortion correction to present onto a spherical display. ", 267 267 ""); 268 I_Method8(void, setUpViewForWoWVxDisplay, IN, unsigned int, screenNum, IN, unsigned char, wow_content, IN, unsigned char, wow_factor, IN, unsigned char, wow_offset, IN, float, wow_disparity_Zd, IN, float, wow_disparity_vz, IN, float, wow_disparity_M, IN, float, wow_disparity_C, 269 Properties::NON_VIRTUAL, 270 __void__setUpViewForWoWVxDisplay__unsigned_int__unsigned_char__unsigned_char__unsigned_char__float__float__float__float, 271 "Convenience method for autostereoscopic Philips WoWvx display. ", 272 ""); 268 273 I_Method1(bool, containsCamera, IN, const osg::Camera *, camera, 269 274 Properties::NON_VIRTUAL,
