- Timestamp:
- 05/30/08 01:57:13 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/Depreciated/State/OSGTextureChunkBase.h
r1197 r1261 121 121 #include "OSGUInt32Fields.h" // BorderWidth type 122 122 #include "OSGUInt32Fields.h" // NPOTMatrixScale type 123 #include "OSGReal32Fields.h" // SkipMipMapLevels type 123 124 124 125 #include "OSGTextureChunkFields.h" … … 203 204 BorderWidthFieldId = DepthModeFieldId + 1, 204 205 NPOTMatrixScaleFieldId = BorderWidthFieldId + 1, 205 NextFieldId = NPOTMatrixScaleFieldId + 1 206 SkipMipMapLevelsFieldId = NPOTMatrixScaleFieldId + 1, 207 NextFieldId = SkipMipMapLevelsFieldId + 1 206 208 }; 207 209 … … 316 318 static const OSG::BitVector NPOTMatrixScaleFieldMask = 317 319 (TypeTraits<BitVector>::One << NPOTMatrixScaleFieldId); 320 static const OSG::BitVector SkipMipMapLevelsFieldMask = 321 (TypeTraits<BitVector>::One << SkipMipMapLevelsFieldId); 318 322 static const OSG::BitVector NextFieldMask = 319 323 (TypeTraits<BitVector>::One << NextFieldId); … … 669 673 const SFUInt32 *getSFNPOTMatrixScale (void) const; 670 674 675 #ifdef OSG_1_GET_COMPAT 676 SFReal32 *getSFSkipMipMapLevels (void); 677 #endif 678 SFReal32 *editSFSkipMipMapLevels(void); 679 const SFReal32 *getSFSkipMipMapLevels (void) const; 680 671 681 672 682 Image * getImage (void) const; … … 996 1006 UInt32 &editNPOTMatrixScale(void); 997 1007 const UInt32 getNPOTMatrixScale (void) const; 1008 1009 #ifdef OSG_1_GET_COMPAT 1010 Real32 &getSkipMipMapLevels (void); 1011 #endif 1012 Real32 &editSkipMipMapLevels(void); 1013 const Real32 getSkipMipMapLevels (void) const; 998 1014 999 1015 /*! \} */ … … 1056 1072 void setBorderWidth (const UInt32 &value); 1057 1073 void setNPOTMatrixScale(const UInt32 &value); 1074 void setSkipMipMapLevels(const Real32 &value); 1058 1075 1059 1076 /*! \} */ … … 1171 1188 SFUInt32 _sfBorderWidth; 1172 1189 SFUInt32 _sfNPOTMatrixScale; 1190 SFReal32 _sfSkipMipMapLevels; 1173 1191 1174 1192 /*! \} */ … … 1309 1327 GetFieldHandlePtr getHandleNPOTMatrixScale (void) const; 1310 1328 EditFieldHandlePtr editHandleNPOTMatrixScale(void); 1329 GetFieldHandlePtr getHandleSkipMipMapLevels (void) const; 1330 EditFieldHandlePtr editHandleSkipMipMapLevels(void); 1311 1331 1312 1332 /*! \} */
