Removed deprecated code from the distribution.

Added .osg support for Texture1D and Texture3D.
This commit is contained in:
Robert Osfield
2002-08-28 15:28:11 +00:00
parent 951b6e9f3f
commit 8353fc0ed6
41 changed files with 911 additions and 1823 deletions

View File

@@ -23,7 +23,7 @@ Texture3D::Texture3D():
}
Texture3D::Texture3D(const Texture3D& text,const CopyOp& copyop):
TextureBase(text,copyop),
Texture(text,copyop),
_image(copyop(text._image.get())),
_textureWidth(text._textureWidth),
_textureHeight(text._textureHeight),
@@ -63,7 +63,7 @@ int Texture3D::compare(const StateAttribute& sa) const
}
}
int result = compareTextureBase(rhs);
int result = compareTexture(rhs);
if (result!=0) return result;
// compare each paramter in turn against the rhs.