From 44f88715ae36e54cc949cf125f4d61ee5ac9363a Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 14 Feb 2003 19:47:59 +0000 Subject: [PATCH] MOre work on uint -> unsigned int. --- include/osg/Texture | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/osg/Texture b/include/osg/Texture index 61011e917..8fbf176e4 100644 --- a/include/osg/Texture +++ b/include/osg/Texture @@ -278,12 +278,12 @@ class SG_EXPORT Texture : public osg::StateAttribute * If 'createIfNotInitalized' is true then the Extensions object is * automatically created. However, in this case the extension object * only be created with the graphics context associated with ContextID..*/ - static const Extensions* getExtensions(uint contextID,bool createIfNotInitalized); + static const Extensions* getExtensions(unsigned int contextID,bool createIfNotInitalized); /** setExtensions allows users to override the extensions across graphics contexts. * typically used when you have different extensions supported across graphics pipes * but need to ensure that they all use the same low common denominator extensions.*/ - static void setExtensions(uint contextID,Extensions* extensions); + static void setExtensions(unsigned int contextID,Extensions* extensions); protected : @@ -308,10 +308,10 @@ class SG_EXPORT Texture : public osg::StateAttribute typedef buffered_value TextureNameList; mutable TextureNameList _handleList; - typedef buffered_value ImageModifiedTag; + typedef buffered_value ImageModifiedTag; mutable ImageModifiedTag _modifiedTag; - typedef buffered_value TexParameterDirtyList; + typedef buffered_value TexParameterDirtyList; mutable TexParameterDirtyList _texParametersDirtyList; WrapMode _wrap_s;