2002-08-25 03:39:39 +08:00
|
|
|
#include <osg/GLExtensions>
|
|
|
|
#include <osg/Texture3D>
|
|
|
|
#include <osg/State>
|
|
|
|
#include <osg/GLU>
|
|
|
|
#include <osg/Notify>
|
|
|
|
|
2002-08-26 18:24:01 +08:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
typedef void (APIENTRY * GLTexImage3DProc) ( GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
|
|
|
|
typedef void (APIENTRY * GLTexSubImage3DProc) ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
|
|
|
|
typedef void (APIENTRY * GLCopyTexSubImageProc) ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height );
|
|
|
|
typedef void (APIENTRY * GLUBuild3DMipMapsProc) ( GLenum target, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *data);
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
using namespace osg;
|
|
|
|
|
|
|
|
Texture3D::Texture3D():
|
|
|
|
_textureWidth(0),
|
|
|
|
_textureHeight(0),
|
|
|
|
_textureDepth(0),
|
|
|
|
_numMimpmapLevels(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Texture3D::Texture3D(const Texture3D& text,const CopyOp& copyop):
|
|
|
|
TextureBase(text,copyop),
|
|
|
|
_image(copyop(text._image.get())),
|
|
|
|
_textureWidth(text._textureWidth),
|
|
|
|
_textureHeight(text._textureHeight),
|
|
|
|
_textureDepth(text._textureDepth),
|
|
|
|
_numMimpmapLevels(text._numMimpmapLevels),
|
|
|
|
_subloadCallback(text._subloadCallback)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Texture3D::~Texture3D()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int Texture3D::compare(const StateAttribute& sa) const
|
|
|
|
{
|
|
|
|
// check the types are equal and then create the rhs variable
|
|
|
|
// used by the COMPARE_StateAttribute_Paramter macro's below.
|
|
|
|
COMPARE_StateAttribute_Types(Texture3D,sa)
|
|
|
|
|
|
|
|
if (_image!=rhs._image) // smart pointer comparison.
|
|
|
|
{
|
|
|
|
if (_image.valid())
|
|
|
|
{
|
|
|
|
if (rhs._image.valid())
|
|
|
|
{
|
|
|
|
if (_image->getFileName()<rhs._image->getFileName()) return -1;
|
|
|
|
else if (_image->getFileName()>rhs._image->getFileName()) return 1;;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 1; // valid lhs._image is greater than null.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (rhs._image.valid())
|
|
|
|
{
|
|
|
|
return -1; // valid rhs._image is greater than null.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int result = compareTextureBase(rhs);
|
|
|
|
if (result!=0) return result;
|
|
|
|
|
|
|
|
// compare each paramter in turn against the rhs.
|
|
|
|
COMPARE_StateAttribute_Parameter(_textureWidth)
|
|
|
|
COMPARE_StateAttribute_Parameter(_textureHeight)
|
|
|
|
COMPARE_StateAttribute_Parameter(_textureDepth)
|
|
|
|
COMPARE_StateAttribute_Parameter(_subloadCallback)
|
|
|
|
|
|
|
|
return 0; // passed all the above comparison macro's, must be equal.
|
|
|
|
}
|
|
|
|
|
|
|
|
void Texture3D::setImage(Image* image)
|
|
|
|
{
|
|
|
|
// delete old texture objects.
|
|
|
|
for(TextureNameList::iterator itr=_handleList.begin();
|
|
|
|
itr!=_handleList.end();
|
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
if (*itr != 0)
|
|
|
|
{
|
|
|
|
// contact global texture object handler to delete texture objects
|
|
|
|
// in appropriate context.
|
|
|
|
// glDeleteTextures( 1L, (const GLuint *)itr );
|
|
|
|
*itr = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_image = image;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Texture3D::apply(State& state) const
|
|
|
|
{
|
|
|
|
|
2002-08-26 18:24:01 +08:00
|
|
|
static bool s_texturing_supported = strncmp((const char*)glGetString(GL_VERSION),"1.2",3)>=0 ||
|
|
|
|
isGLExtensionSupported("GL_EXT_texture3D");
|
|
|
|
|
|
|
|
if (s_texturing_supported)
|
|
|
|
{
|
|
|
|
notify(WARN)<<"Warning: Texture3D::apply(..) failed, 3D texturing is not support by your OpenGL drivers."<<std::endl;
|
|
|
|
}
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
// get the contextID (user defined ID of 0 upwards) for the
|
|
|
|
// current OpenGL context.
|
|
|
|
const uint contextID = state.getContextID();
|
|
|
|
|
|
|
|
// get the globj for the current contextID.
|
|
|
|
GLuint& handle = getTextureObject(contextID);
|
|
|
|
|
|
|
|
if (handle != 0)
|
|
|
|
{
|
|
|
|
|
|
|
|
glBindTexture( GL_TEXTURE_3D, handle );
|
|
|
|
if (_texParamtersDirty) applyTexParameters(GL_TEXTURE_3D,state);
|
|
|
|
|
|
|
|
if (_subloadCallback.valid())
|
|
|
|
{
|
|
|
|
_subloadCallback->subload(*this,state);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else if (_subloadCallback.valid())
|
|
|
|
{
|
|
|
|
|
|
|
|
glGenTextures( 1L, (GLuint *)&handle );
|
|
|
|
glBindTexture( GL_TEXTURE_3D, handle );
|
|
|
|
|
|
|
|
applyTexParameters(GL_TEXTURE_3D,state);
|
|
|
|
|
|
|
|
_subloadCallback->load(*this,state);
|
|
|
|
|
|
|
|
// in theory the following line is redundent, but in practice
|
|
|
|
// have found that the first frame drawn doesn't apply the textures
|
|
|
|
// unless a second bind is called?!!
|
|
|
|
// perhaps it is the first glBind which is not required...
|
|
|
|
glBindTexture( GL_TEXTURE_3D, handle );
|
|
|
|
|
|
|
|
}
|
|
|
|
else if (_image.valid() && _image->data())
|
|
|
|
{
|
|
|
|
|
|
|
|
glGenTextures( 1L, (GLuint *)&handle );
|
|
|
|
glBindTexture( GL_TEXTURE_3D, handle );
|
|
|
|
|
|
|
|
applyTexParameters(GL_TEXTURE_3D,state);
|
|
|
|
|
|
|
|
applyTexImage3D(GL_TEXTURE_3D,_image.get(),state, _textureWidth, _textureHeight, _textureDepth,_numMimpmapLevels);
|
|
|
|
|
|
|
|
// in theory the following line is redundent, but in practice
|
|
|
|
// have found that the first frame drawn doesn't apply the textures
|
|
|
|
// unless a second bind is called?!!
|
|
|
|
// perhaps it is the first glBind which is not required...
|
|
|
|
glBindTexture( GL_TEXTURE_3D, handle );
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
glBindTexture( GL_TEXTURE_3D, 0 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Texture3D::computeInternalFormat() const
|
|
|
|
{
|
|
|
|
if (_image.valid()) computeInternalFormatWithImage(*_image);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Texture3D::applyTexImage3D(GLenum target, Image* image, State& state, GLsizei& inwidth, GLsizei& inheight, GLsizei& indepth, GLsizei& numMimpmapLevels) const
|
|
|
|
{
|
|
|
|
// if we don't have a valid image we can't create a texture!
|
|
|
|
if (!image || !image->data())
|
|
|
|
return;
|
|
|
|
|
2002-08-26 18:24:01 +08:00
|
|
|
static GLTexImage3DProc s_glTexImage3D = (GLTexImage3DProc) getGLExtensionFuncPtr("glTexImage3D","glTexImage3DEXT");
|
|
|
|
if (!s_glTexImage3D)
|
|
|
|
{
|
|
|
|
notify(WARN) << "Warning:: Texture3D::applyTexImage3D(..) failed, 3D texturing not supported by your OpenGL drivers."<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
// get the contextID (user defined ID of 0 upwards) for the
|
|
|
|
// current OpenGL context.
|
|
|
|
const uint contextID = state.getContextID();
|
|
|
|
|
|
|
|
// update the modified tag to show that it is upto date.
|
|
|
|
getModifiedTag(contextID) = image->getModifiedTag();
|
|
|
|
|
|
|
|
|
|
|
|
// compute the internal texture format, this set the _internalFormat to an appropriate value.
|
|
|
|
computeInternalFormat();
|
|
|
|
|
|
|
|
// select the internalFormat required for the texture.
|
|
|
|
bool compressed = isCompressedInternalFormat(_internalFormat);
|
|
|
|
if (compressed)
|
|
|
|
{
|
|
|
|
notify(WARN)<<"Warning::cannot currently use compressed format with 3D textures."<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
image->ensureValidSizeForTexturing();
|
|
|
|
|
|
|
|
glPixelStorei(GL_UNPACK_ALIGNMENT,image->getPacking());
|
2002-08-26 18:24:01 +08:00
|
|
|
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
if( _min_filter == LINEAR || _min_filter == NEAREST )
|
|
|
|
{
|
|
|
|
numMimpmapLevels = 1;
|
2002-08-26 18:24:01 +08:00
|
|
|
s_glTexImage3D( target, 0, _internalFormat,
|
2002-08-25 03:39:39 +08:00
|
|
|
image->s(), image->t(), image->r(), 0,
|
|
|
|
(GLenum)image->getPixelFormat(),
|
|
|
|
(GLenum)image->getDataType(),
|
|
|
|
image->data() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(!image->isMipmap())
|
|
|
|
{
|
|
|
|
|
2002-08-26 18:24:01 +08:00
|
|
|
static GLUBuild3DMipMapsProc s_gluBuild3DMipmaps = (GLUBuild3DMipMapsProc) getGLUExtensionFuncPtr("gluBuild3DMipmaps");
|
|
|
|
if (!s_gluBuild3DMipmaps)
|
|
|
|
{
|
|
|
|
notify(WARN) << "Warning:: Texture3D::applyTexImage3D(..) failed, gluBuild3DMipmaps not supported by your OpenGL drivers."<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
numMimpmapLevels = 1;
|
|
|
|
|
2002-08-26 18:24:01 +08:00
|
|
|
s_gluBuild3DMipmaps( target, _internalFormat,
|
2002-08-25 03:39:39 +08:00
|
|
|
image->s(),image->t(),image->r(),
|
|
|
|
(GLenum)image->getPixelFormat(), (GLenum)image->getDataType(),
|
|
|
|
image->data() );
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
numMimpmapLevels = image->getNumMipmapLevels();
|
|
|
|
|
|
|
|
int width = image->s();
|
|
|
|
int height = image->t();
|
|
|
|
int depth = image->r();
|
|
|
|
|
|
|
|
for( GLsizei k = 0 ; k < numMimpmapLevels && (width || height || depth) ;k++)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (width == 0)
|
|
|
|
width = 1;
|
|
|
|
if (height == 0)
|
|
|
|
height = 1;
|
|
|
|
if (depth == 0)
|
|
|
|
depth = 1;
|
|
|
|
|
2002-08-26 18:24:01 +08:00
|
|
|
s_glTexImage3D( target, k, _internalFormat,
|
2002-08-25 03:39:39 +08:00
|
|
|
width, height, depth, 0,
|
|
|
|
(GLenum)image->getPixelFormat(),
|
|
|
|
(GLenum)image->getDataType(),
|
|
|
|
image->getMipmapData(k));
|
|
|
|
|
|
|
|
width >>= 1;
|
|
|
|
height >>= 1;
|
|
|
|
depth >>= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
inwidth = image->s();
|
|
|
|
inheight = image->t();
|
|
|
|
indepth = image->r();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void Texture3D::copyTexSubImage3D(State& state, int xoffset, int yoffset, int zoffset, int x, int y, int width, int height )
|
|
|
|
{
|
2002-08-26 18:24:01 +08:00
|
|
|
static GLCopyTexSubImageProc s_glCopyTexSubImage3D = (GLCopyTexSubImageProc) getGLExtensionFuncPtr("glCopyTexSubImage3D","glCopyTexSubImage3DEXT");
|
|
|
|
if (!s_glCopyTexSubImage3D)
|
|
|
|
{
|
|
|
|
notify(WARN) << "Warning:: Texture3D::copyTexSubImage3D(..) failed, 3D texture copy sub image not supported by your OpenGL drivers."<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
const uint contextID = state.getContextID();
|
|
|
|
|
|
|
|
// get the globj for the current contextID.
|
|
|
|
GLuint& handle = getTextureObject(contextID);
|
|
|
|
|
|
|
|
if (handle)
|
|
|
|
{
|
|
|
|
|
|
|
|
// we have a valid image
|
|
|
|
glBindTexture( GL_TEXTURE_3D, handle );
|
|
|
|
applyTexParameters(GL_TEXTURE_3D,state);
|
2002-08-26 18:24:01 +08:00
|
|
|
s_glCopyTexSubImage3D( GL_TEXTURE_3D, 0, xoffset,yoffset,zoffset, x, y, width, height);
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
/* Redundant, delete later */
|
|
|
|
glBindTexture( GL_TEXTURE_3D, handle );
|
|
|
|
|
|
|
|
// inform state that this texture is the current one bound.
|
|
|
|
state.haveAppliedAttribute(this);
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
notify(WARN)<<"Warning: Texture3D::copyTexSubImage3D(..) failed, cannot not copy to a non existant texture."<<std::endl;
|
|
|
|
}
|
|
|
|
}
|