- Timestamp:
- 12/29/06 10:28:00 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/Depreciated/State/OSGCubeTextureChunkBase.cpp
r439 r459 82 82 See \ref PageSystemCubeTextureChunk for a description. 83 83 84 The CubeTexture is defined by 6 separate texture images. As it is 85 derived from the standard texture chunk it already has an image, which 86 is used for the negative Z direction. The other 5 images are stored in 87 variables that are named according to the direction they represent 88 (OSG::CubeTextureChunk::_sfPosZImage, 89 OSG::CubeTextureChunk::_sfNegYImage, 90 OSG::CubeTextureChunk::_sfPosYImage, 91 OSG::CubeTextureChunk::_sfNegXImage, 92 OSG::CubeTextureChunk::_sfPosXImage). 84 The CubeTexture is defined by 6 separate texture images. As it is derived from 85 the standard texture chunk it already has an image, which is used for the 86 negative Z direction. The other 5 images are stored in variables that are named 87 according to the direction they represent (OSG::CubeTextureChunk::_sfPosZImage, 88 OSG::CubeTextureChunk::_sfNegYImage, OSG::CubeTextureChunk::_sfPosYImage, 89 OSG::CubeTextureChunk::_sfNegXImage, OSG::CubeTextureChunk::_sfPosXImage). 93 90 94 91 \deprecated Use OSG::CubeTextureObjChunk instead. … … 102 99 The image for the positive Z direction for the cube tetxure. 103 100 */ 101 104 102 /*! \var ImagePtr CubeTextureChunkBase::_sfPosXImage 105 103 The image for the positive X direction for the cube tetxure. 106 104 */ 105 107 106 /*! \var ImagePtr CubeTextureChunkBase::_sfNegXImage 108 107 The image for the negative X direction for the cube tetxure. 109 108 */ 109 110 110 /*! \var ImagePtr CubeTextureChunkBase::_sfPosYImage 111 111 The image for the positive Y direction for the cube tetxure. 112 112 */ 113 113 114 /*! \var ImagePtr CubeTextureChunkBase::_sfNegYImage 114 115 The image for the negative Y direction for the cube tetxure. 115 116 */ 117 116 118 /*! \var bool CubeTextureChunkBase::_sfIsReflectionMap 117 119 118 120 */ 121 119 122 120 123 void CubeTextureChunkBase::classDescInserter(TypeObject &oType) … … 296 299 "</FieldContainer>\n", 297 300 "\\ingroup GrpSystemState\n" 301 "\n" 298 302 "See \\ref PageSystemCubeTextureChunk for a description.\n" 303 "\n" 299 304 "The CubeTexture is defined by 6 separate texture images. As it is derived from \n" 300 305 "the standard texture chunk it already has an image, which is used for the \n" … … 303 308 "OSG::CubeTextureChunk::_sfNegYImage, OSG::CubeTextureChunk::_sfPosYImage, \n" 304 309 "OSG::CubeTextureChunk::_sfNegXImage, OSG::CubeTextureChunk::_sfPosXImage).\n" 310 "\n" 305 311 "\\deprecated Use OSG::CubeTextureObjChunk instead.\n" 306 312 );
