Changed the isTextureIntegerSupported method so that it no longer has the EXT entry in it

for forward compatability reasons.
This commit is contained in:
Robert Osfield
2007-09-11 12:28:03 +00:00
parent 5e83ae4821
commit c51e893ba4
2 changed files with 8 additions and 8 deletions

View File

@@ -627,8 +627,8 @@ class OSG_EXPORT Texture : public osg::StateAttribute
_isNonPowerOfTwoTextureMipMappedSupported;
}
void setTextureIntegerEXTSupported(bool flag) { _isTextureIntegerEXTSupported=flag; }
bool isTextureIntegerEXTSupported() const { return _isTextureIntegerEXTSupported; }
void setTextureIntegerSupported(bool flag) { _isTextureIntegerEXTSupported=flag; }
bool isTextureIntegerSupported() const { return _isTextureIntegerEXTSupported; }
void glTexParameterIiv(GLenum target, GLenum pname, const GLint* data) const;
void glTexParameterIuiv(GLenum target, GLenum pname, const GLuint* data) const;