Changeset 459 for trunk/Source/System/Image/WS/OSGImageBase.cpp
- Timestamp:
- 12/29/06 10:28:00 (2 years ago)
- Files:
-
- trunk/Source/System/Image/WS/OSGImageBase.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/Image/WS/OSGImageBase.cpp
r437 r459 86 86 87 87 */ 88 88 89 /*! \var Int32 ImageBase::_sfDimension 89 90 Image dimension, 0 for invalid, 1 for 1D, 2 for 2D and 3 for 3D data. 90 91 */ 92 91 93 /*! \var Int32 ImageBase::_sfWidth 92 94 93 95 */ 96 94 97 /*! \var Int32 ImageBase::_sfHeight 95 98 96 99 */ 100 97 101 /*! \var Int32 ImageBase::_sfDepth 98 102 99 103 */ 104 100 105 /*! \var Int32 ImageBase::_sfBpp 101 106 Bytes of data per pixel. 102 107 */ 108 103 109 /*! \var Int32 ImageBase::_sfMipMapCount 104 110 105 111 */ 112 106 113 /*! \var Int32 ImageBase::_sfFrameCount 107 114 The number of frames in the data. 108 115 */ 116 109 117 /*! \var Time ImageBase::_sfFrameDelay 110 118 Time between frames. Determines the frame rate. 111 119 */ 120 112 121 /*! \var UInt32 ImageBase::_sfPixelFormat 113 122 114 123 */ 124 115 125 /*! \var UInt8 ImageBase::_mfPixel 116 126 The pixel data buffer. This is where the data for the image is stored. 117 127 */ 128 118 129 /*! \var Int32 ImageBase::_sfFrameSize 119 130 120 131 */ 132 121 133 /*! \var std::string ImageBase::_sfName 122 134 Texture file path. 123 135 */ 136 124 137 /*! \var Int32 ImageBase::_sfDataType 125 138 Type of image data. 126 139 */ 140 127 141 /*! \var Int32 ImageBase::_sfComponentSize 128 Size (in byte) of a single component of the image. Necessary for High129 Dynamic Range and other higher-level image types.142 Size (in byte) of a single component of the image. Necessary 143 for High Dynamic Range and other higher-level image types. 130 144 */ 145 131 146 /*! \var Int32 ImageBase::_sfSideCount 132 147 133 148 */ 149 134 150 /*! \var Int32 ImageBase::_sfSideSize 135 151 136 152 */ 153 137 154 /*! \var bool ImageBase::_sfForceCompressedData 138 155 Set to true if using the image to keep unknown data for textures. 139 156 Generally used in conjunction with TextureChunk::externalFormat. 140 157 */ 158 141 159 /*! \var bool ImageBase::_sfForceAlphaChannel 142 160 Set to true if using the image to keep unknown data for textures. 143 161 Generally used in conjunction with TextureChunk::externalFormat. 144 162 */ 163 145 164 /*! \var bool ImageBase::_sfForceColorChannel 146 165 Set to true if using the image to keep unknown data for textures. 147 166 Generally used in conjunction with TextureChunk::externalFormat. 148 167 */ 168 149 169 /*! \var bool ImageBase::_sfForceAlphaBinary 150 Set to true if using the image to prevent depth sorting for 170 Set to true if using the image to prevent depth sorting for 151 171 SimpleTexturedMaterials using this Image. 152 172 */ 173 153 174 154 175 void ImageBase::classDescInserter(TypeObject &oType)
