2005-04-15 05:41:28 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2005 Robert Osfield
|
2003-01-22 00:45:36 +08:00
|
|
|
*
|
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
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>
|
|
|
|
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
using namespace osg;
|
|
|
|
|
|
|
|
Texture3D::Texture3D():
|
|
|
|
_textureWidth(0),
|
|
|
|
_textureHeight(0),
|
|
|
|
_textureDepth(0),
|
2003-07-14 22:42:10 +08:00
|
|
|
_numMipmapLevels(0)
|
2002-08-25 03:39:39 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Texture3D::Texture3D(const Texture3D& text,const CopyOp& copyop):
|
2002-08-28 23:28:11 +08:00
|
|
|
Texture(text,copyop),
|
2002-08-25 03:39:39 +08:00
|
|
|
_image(copyop(text._image.get())),
|
|
|
|
_textureWidth(text._textureWidth),
|
|
|
|
_textureHeight(text._textureHeight),
|
|
|
|
_textureDepth(text._textureDepth),
|
2003-07-14 22:42:10 +08:00
|
|
|
_numMipmapLevels(text._numMipmapLevels),
|
2002-08-25 03:39:39 +08:00
|
|
|
_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())
|
|
|
|
{
|
2003-03-11 21:30:03 +08:00
|
|
|
int result = _image->compare(*rhs._image);
|
|
|
|
if (result!=0) return result;
|
2002-08-25 03:39:39 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 1; // valid lhs._image is greater than null.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (rhs._image.valid())
|
|
|
|
{
|
|
|
|
return -1; // valid rhs._image is greater than null.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
int result = compareTexture(rhs);
|
2002-08-25 03:39:39 +08:00
|
|
|
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.
|
2002-09-05 19:42:55 +08:00
|
|
|
dirtyTextureObject();
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2005-02-09 18:39:45 +08:00
|
|
|
_modifiedCount.setAllElementsTo(0);
|
2003-04-07 17:46:06 +08:00
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
_image = image;
|
|
|
|
}
|
|
|
|
|
2004-09-30 17:10:29 +08:00
|
|
|
void Texture3D::computeRequiredTextureDimensions(State& state, const osg::Image& image,GLsizei& inwidth, GLsizei& inheight,GLsizei& indepth, GLsizei& numMipmapLevels) const
|
|
|
|
{
|
|
|
|
const unsigned int contextID = state.getContextID();
|
|
|
|
const Extensions* extensions = getExtensions(contextID,true);
|
|
|
|
|
|
|
|
int width = Image::computeNearestPowerOfTwo(image.s()-2*_borderWidth)+2*_borderWidth;
|
|
|
|
int height = Image::computeNearestPowerOfTwo(image.t()-2*_borderWidth)+2*_borderWidth;
|
|
|
|
int depth = Image::computeNearestPowerOfTwo(image.r()-2*_borderWidth)+2*_borderWidth;
|
|
|
|
|
|
|
|
// cap the size to what the graphics hardware can handle.
|
|
|
|
if (width>extensions->maxTexture3DSize()) width = extensions->maxTexture3DSize();
|
|
|
|
if (height>extensions->maxTexture3DSize()) height = extensions->maxTexture3DSize();
|
|
|
|
if (depth>extensions->maxTexture3DSize()) depth = extensions->maxTexture3DSize();
|
|
|
|
|
|
|
|
inwidth = width;
|
|
|
|
inheight = height;
|
|
|
|
indepth = depth;
|
|
|
|
|
|
|
|
bool useHardwareMipMapGeneration = false; //!image.isMipmap() && _useHardwareMipMapGeneration && extensions->isGenerateMipMapSupported();
|
|
|
|
|
|
|
|
if( _min_filter == LINEAR || _min_filter == NEAREST || useHardwareMipMapGeneration )
|
|
|
|
{
|
|
|
|
numMipmapLevels = 1;
|
|
|
|
}
|
|
|
|
else if( image.isMipmap() )
|
|
|
|
{
|
|
|
|
numMipmapLevels = image.getNumMipmapLevels();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
numMipmapLevels = 0;
|
|
|
|
for( ; (width || height || depth) ;++numMipmapLevels)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (width == 0)
|
|
|
|
width = 1;
|
|
|
|
if (height == 0)
|
|
|
|
height = 1;
|
|
|
|
if (depth == 0)
|
|
|
|
depth = 1;
|
|
|
|
|
|
|
|
width >>= 1;
|
|
|
|
height >>= 1;
|
|
|
|
depth >>= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
void Texture3D::apply(State& state) const
|
|
|
|
{
|
2002-08-26 18:24:01 +08:00
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
// get the contextID (user defined ID of 0 upwards) for the
|
|
|
|
// current OpenGL context.
|
2003-02-14 19:41:52 +08:00
|
|
|
const unsigned int contextID = state.getContextID();
|
2002-09-05 19:42:55 +08:00
|
|
|
|
2002-09-05 23:45:10 +08:00
|
|
|
const Extensions* extensions = getExtensions(contextID,true);
|
2002-09-05 19:42:55 +08:00
|
|
|
|
2002-09-05 23:45:10 +08:00
|
|
|
if (!extensions->isTexture3DSupported())
|
2002-09-05 19:42:55 +08:00
|
|
|
{
|
|
|
|
notify(WARN)<<"Warning: Texture3D::apply(..) failed, 3D texturing is not support by OpenGL driver."<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2003-07-14 22:42:10 +08:00
|
|
|
// get the texture object for the current contextID.
|
|
|
|
TextureObject* textureObject = getTextureObject(contextID);
|
|
|
|
|
|
|
|
if (textureObject)
|
2002-08-25 03:39:39 +08:00
|
|
|
{
|
2003-07-14 22:42:10 +08:00
|
|
|
// we have a valid image
|
|
|
|
textureObject->bind();
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2002-11-12 00:11:48 +08:00
|
|
|
if (getTextureParameterDirty(state.getContextID())) applyTexParameters(GL_TEXTURE_3D,state);
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
if (_subloadCallback.valid())
|
|
|
|
{
|
|
|
|
_subloadCallback->subload(*this,state);
|
|
|
|
}
|
2005-02-09 18:39:45 +08:00
|
|
|
else if (_image.get() && getModifiedCount(contextID) != _image->getModifiedCount())
|
2002-11-19 20:48:58 +08:00
|
|
|
{
|
2003-07-14 22:42:10 +08:00
|
|
|
applyTexImage3D(GL_TEXTURE_3D,_image.get(),state, _textureWidth, _textureHeight, _textureDepth,_numMipmapLevels);
|
2003-04-07 17:46:06 +08:00
|
|
|
|
2005-02-09 18:39:45 +08:00
|
|
|
// update the modified count to show that it is upto date.
|
|
|
|
getModifiedCount(contextID) = _image->getModifiedCount();
|
2002-11-19 20:48:58 +08:00
|
|
|
}
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
else if (_subloadCallback.valid())
|
|
|
|
{
|
|
|
|
|
2004-09-22 05:33:52 +08:00
|
|
|
_textureObjectBuffer[contextID] = textureObject = generateTextureObject(contextID,GL_TEXTURE_3D);
|
2003-07-14 22:42:10 +08:00
|
|
|
|
|
|
|
textureObject->bind();
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
applyTexParameters(GL_TEXTURE_3D,state);
|
|
|
|
|
|
|
|
_subloadCallback->load(*this,state);
|
|
|
|
|
2003-07-14 22:42:10 +08:00
|
|
|
textureObject->setAllocated(_numMipmapLevels,_internalFormat,_textureWidth,_textureHeight,_textureDepth,0);
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
// 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...
|
2003-07-14 22:42:10 +08:00
|
|
|
//glBindTexture( GL_TEXTURE_3D, handle );
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
else if (_image.valid() && _image->data())
|
|
|
|
{
|
|
|
|
|
2004-09-30 17:10:29 +08:00
|
|
|
// compute the internal texture format, this set the _internalFormat to an appropriate value.
|
|
|
|
computeInternalFormat();
|
|
|
|
|
|
|
|
// compute the dimensions of the texture.
|
|
|
|
computeRequiredTextureDimensions(state,*_image,_textureWidth, _textureHeight, _textureDepth,_numMipmapLevels);
|
|
|
|
|
2004-09-22 05:33:52 +08:00
|
|
|
_textureObjectBuffer[contextID] = textureObject = generateTextureObject(contextID,GL_TEXTURE_3D);
|
2003-07-14 22:42:10 +08:00
|
|
|
|
|
|
|
textureObject->bind();
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2004-09-30 17:10:29 +08:00
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
applyTexParameters(GL_TEXTURE_3D,state);
|
|
|
|
|
2003-07-14 22:42:10 +08:00
|
|
|
applyTexImage3D(GL_TEXTURE_3D,_image.get(),state, _textureWidth, _textureHeight, _textureDepth,_numMipmapLevels);
|
|
|
|
|
|
|
|
textureObject->setAllocated(_numMipmapLevels,_internalFormat,_textureWidth,_textureHeight,_textureDepth,0);
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2005-02-09 18:39:45 +08:00
|
|
|
// update the modified count to show that it is upto date.
|
|
|
|
getModifiedCount(contextID) = _image->getModifiedCount();
|
2003-04-07 17:46:06 +08:00
|
|
|
|
2004-07-27 21:24:35 +08:00
|
|
|
if (_unrefImageDataAfterApply && areAllTextureObjectsLoaded() && _image->getDataVariance()==STATIC)
|
2003-04-07 20:51:00 +08:00
|
|
|
{
|
2003-07-14 22:42:10 +08:00
|
|
|
Texture3D* non_const_this = const_cast<Texture3D*>(this);
|
|
|
|
non_const_this->_image = 0;
|
2003-04-07 20:51:00 +08:00
|
|
|
}
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
glBindTexture( GL_TEXTURE_3D, 0 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Texture3D::computeInternalFormat() const
|
|
|
|
{
|
|
|
|
if (_image.valid()) computeInternalFormatWithImage(*_image);
|
|
|
|
}
|
|
|
|
|
2003-07-14 22:42:10 +08:00
|
|
|
void Texture3D::applyTexImage3D(GLenum target, Image* image, State& state, GLsizei& inwidth, GLsizei& inheight, GLsizei& indepth, GLsizei& numMipmapLevels) const
|
2002-08-25 03:39:39 +08:00
|
|
|
{
|
|
|
|
// if we don't have a valid image we can't create a texture!
|
|
|
|
if (!image || !image->data())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// get the contextID (user defined ID of 0 upwards) for the
|
|
|
|
// current OpenGL context.
|
2003-02-14 19:41:52 +08:00
|
|
|
const unsigned int contextID = state.getContextID();
|
2003-04-07 17:46:06 +08:00
|
|
|
const Extensions* extensions = getExtensions(contextID,true);
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
// 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);
|
2004-09-30 17:10:29 +08:00
|
|
|
bool compressed_image = isCompressedInternalFormat((GLenum)image->getPixelFormat());
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
if (compressed)
|
|
|
|
{
|
2004-09-29 18:01:46 +08:00
|
|
|
//notify(WARN)<<"Warning::cannot currently use compressed format with 3D textures."<<std::endl;
|
|
|
|
//return;
|
2002-08-25 03:39:39 +08:00
|
|
|
}
|
|
|
|
|
2002-09-17 04:58:05 +08:00
|
|
|
image->ensureValidSizeForTexturing(extensions->maxTexture3DSize());
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
glPixelStorei(GL_UNPACK_ALIGNMENT,image->getPacking());
|
|
|
|
|
|
|
|
if( _min_filter == LINEAR || _min_filter == NEAREST )
|
|
|
|
{
|
2003-07-14 22:42:10 +08:00
|
|
|
numMipmapLevels = 1;
|
2004-09-30 17:10:29 +08:00
|
|
|
|
|
|
|
if (!compressed_image)
|
|
|
|
{
|
|
|
|
// notify(WARN)<<"glTexImage3D"<<std::endl;
|
|
|
|
extensions->glTexImage3D( target, 0, _internalFormat,
|
|
|
|
inwidth, inheight, indepth,
|
|
|
|
_borderWidth,
|
|
|
|
(GLenum)image->getPixelFormat(),
|
|
|
|
(GLenum)image->getDataType(),
|
|
|
|
image->data() );
|
|
|
|
}
|
|
|
|
else if (extensions->isCompressedTexImage3DSupported())
|
|
|
|
{
|
|
|
|
// notify(WARN)<<"glCompressedTexImage3D "<<inwidth<<", "<<inheight<<", "<<indepth<<std::endl;
|
|
|
|
numMipmapLevels = 1;
|
|
|
|
|
|
|
|
GLint blockSize, size;
|
|
|
|
getCompressedSize(_internalFormat, inwidth, inheight, indepth, blockSize,size);
|
|
|
|
|
|
|
|
extensions->glCompressedTexImage3D(target, 0, _internalFormat,
|
|
|
|
inwidth, inheight, indepth,
|
|
|
|
_borderWidth,
|
|
|
|
size,
|
|
|
|
image->data());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(!image->isMipmap())
|
|
|
|
{
|
|
|
|
|
2003-07-14 22:42:10 +08:00
|
|
|
numMipmapLevels = 1;
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2002-09-05 19:42:55 +08:00
|
|
|
extensions->gluBuild3DMipmaps( target, _internalFormat,
|
|
|
|
image->s(),image->t(),image->r(),
|
|
|
|
(GLenum)image->getPixelFormat(), (GLenum)image->getDataType(),
|
|
|
|
image->data() );
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-07-14 22:42:10 +08:00
|
|
|
numMipmapLevels = image->getNumMipmapLevels();
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
int width = image->s();
|
|
|
|
int height = image->t();
|
|
|
|
int depth = image->r();
|
|
|
|
|
2003-07-14 22:42:10 +08:00
|
|
|
for( GLsizei k = 0 ; k < numMipmapLevels && (width || height || depth) ;k++)
|
2002-08-25 03:39:39 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
if (width == 0)
|
|
|
|
width = 1;
|
|
|
|
if (height == 0)
|
|
|
|
height = 1;
|
|
|
|
if (depth == 0)
|
|
|
|
depth = 1;
|
|
|
|
|
2002-09-05 19:42:55 +08:00
|
|
|
extensions->glTexImage3D( target, k, _internalFormat,
|
2004-01-28 05:29:58 +08:00
|
|
|
width, height, depth, _borderWidth,
|
2002-09-05 19:42:55 +08:00
|
|
|
(GLenum)image->getPixelFormat(),
|
|
|
|
(GLenum)image->getDataType(),
|
|
|
|
image->getMipmapData(k));
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
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 )
|
|
|
|
{
|
2003-02-14 19:41:52 +08:00
|
|
|
const unsigned int contextID = state.getContextID();
|
2002-09-05 23:45:10 +08:00
|
|
|
const Extensions* extensions = getExtensions(contextID,true);
|
2003-07-14 22:42:10 +08:00
|
|
|
|
|
|
|
// get the texture object for the current contextID.
|
|
|
|
TextureObject* textureObject = getTextureObject(contextID);
|
|
|
|
|
|
|
|
if (textureObject != 0)
|
2002-08-25 03:39:39 +08:00
|
|
|
{
|
2003-07-14 22:42:10 +08:00
|
|
|
textureObject->bind();
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
applyTexParameters(GL_TEXTURE_3D,state);
|
2002-09-05 19:42:55 +08:00
|
|
|
extensions->glCopyTexSubImage3D( GL_TEXTURE_3D, 0, xoffset,yoffset,zoffset, x, y, width, height);
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
/* Redundant, delete later */
|
2003-07-14 22:42:10 +08:00
|
|
|
//glBindTexture( GL_TEXTURE_3D, handle );
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
// inform state that this texture is the current one bound.
|
2005-03-25 19:07:48 +08:00
|
|
|
state.haveAppliedTextureAttribute(state.getActiveTextureUnit(), this);
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
notify(WARN)<<"Warning: Texture3D::copyTexSubImage3D(..) failed, cannot not copy to a non existant texture."<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
2002-09-05 19:42:55 +08:00
|
|
|
|
2002-09-14 18:38:28 +08:00
|
|
|
typedef buffered_value< ref_ptr<Texture3D::Extensions> > BufferedExtensions;
|
|
|
|
static BufferedExtensions s_extensions;
|
|
|
|
|
2003-04-10 21:41:45 +08:00
|
|
|
Texture3D::Extensions* Texture3D::getExtensions(unsigned int contextID,bool createIfNotInitalized)
|
2002-09-05 19:42:55 +08:00
|
|
|
{
|
2005-04-26 21:15:27 +08:00
|
|
|
if (!s_extensions[contextID] && createIfNotInitalized) s_extensions[contextID] = new Extensions(contextID);
|
2002-09-05 19:42:55 +08:00
|
|
|
return s_extensions[contextID].get();
|
|
|
|
}
|
|
|
|
|
2003-02-14 19:41:52 +08:00
|
|
|
void Texture3D::setExtensions(unsigned int contextID,Extensions* extensions)
|
2002-09-14 18:38:28 +08:00
|
|
|
{
|
|
|
|
s_extensions[contextID] = extensions;
|
|
|
|
}
|
|
|
|
|
2002-09-05 23:45:10 +08:00
|
|
|
#ifndef GL_MAX_3D_TEXTURE_SIZE
|
|
|
|
#define GL_MAX_3D_TEXTURE_SIZE 0x8073
|
|
|
|
#endif
|
|
|
|
|
2005-04-26 21:15:27 +08:00
|
|
|
Texture3D::Extensions::Extensions(unsigned int contextID)
|
2002-09-14 18:38:28 +08:00
|
|
|
{
|
2005-04-26 21:15:27 +08:00
|
|
|
setupGLExtenions(contextID);
|
2002-09-14 18:38:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Texture3D::Extensions::Extensions(const Extensions& rhs):
|
|
|
|
Referenced()
|
|
|
|
{
|
|
|
|
_isTexture3DSupported = rhs._isTexture3DSupported;
|
|
|
|
_isTexture3DFast = rhs._isTexture3DFast;
|
|
|
|
_maxTexture3DSize = rhs._maxTexture3DSize;
|
|
|
|
|
|
|
|
_glTexImage3D = rhs._glTexImage3D;
|
|
|
|
_glTexSubImage3D = rhs._glTexSubImage3D;
|
|
|
|
_glCopyTexSubImage3D = rhs._glCopyTexSubImage3D;
|
|
|
|
_gluBuild3DMipmaps = rhs._gluBuild3DMipmaps;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Texture3D::Extensions::lowestCommonDenominator(const Extensions& rhs)
|
|
|
|
{
|
|
|
|
if (!rhs._isTexture3DSupported) _isTexture3DSupported = false;
|
|
|
|
if (!rhs._isTexture3DFast) _isTexture3DFast = false;
|
|
|
|
if (rhs._maxTexture3DSize<_maxTexture3DSize) _maxTexture3DSize = rhs._maxTexture3DSize;
|
|
|
|
|
|
|
|
if (!rhs._glTexImage3D) _glTexImage3D = 0;
|
|
|
|
if (!rhs._glTexSubImage3D) _glTexSubImage3D = 0;
|
2004-09-29 18:01:46 +08:00
|
|
|
if (!rhs._glCompressedTexImage3D) _glTexImage3D = 0;
|
|
|
|
if (!rhs._glCompressedTexSubImage3D) _glTexSubImage3D = 0;
|
2002-09-14 18:38:28 +08:00
|
|
|
if (!rhs._glCopyTexSubImage3D) _glCopyTexSubImage3D = 0;
|
|
|
|
if (!rhs._gluBuild3DMipmaps) _gluBuild3DMipmaps = 0;
|
|
|
|
}
|
|
|
|
|
2005-04-26 21:15:27 +08:00
|
|
|
void Texture3D::Extensions::setupGLExtenions(unsigned int contextID)
|
2002-09-05 19:42:55 +08:00
|
|
|
{
|
2005-04-26 21:15:27 +08:00
|
|
|
_isTexture3DFast = isGLExtensionSupported(contextID,"GL_EXT_texture3D");
|
2002-09-05 19:42:55 +08:00
|
|
|
|
2002-09-05 23:45:10 +08:00
|
|
|
if (_isTexture3DFast) _isTexture3DSupported = true;
|
|
|
|
else _isTexture3DSupported = strncmp((const char*)glGetString(GL_VERSION),"1.2",3)>=0;
|
2002-09-05 19:42:55 +08:00
|
|
|
|
2002-09-05 23:45:10 +08:00
|
|
|
glGetIntegerv(GL_MAX_3D_TEXTURE_SIZE, &_maxTexture3DSize);
|
|
|
|
|
2004-09-29 18:01:46 +08:00
|
|
|
_glTexImage3D = getGLExtensionFuncPtr("glTexImage3D","glTexImage3DEXT");
|
|
|
|
_glTexSubImage3D = getGLExtensionFuncPtr("glTexSubImage3D","glTexSubImage3DEXT");
|
|
|
|
_glCompressedTexImage3D = getGLExtensionFuncPtr("glCompressedTexImage3D","glCompressedTexImage3DARB");
|
|
|
|
_glCompressedTexSubImage3D = getGLExtensionFuncPtr("glCompressedTexSubImage3D","glCompressedTexSubImage3DARB");
|
|
|
|
_glCopyTexSubImage3D = getGLExtensionFuncPtr("glCopyTexSubImage3D","glCopyTexSubImage3DEXT");
|
|
|
|
_gluBuild3DMipmaps = getGLExtensionFuncPtr("gluBuild3DMipmaps");
|
2002-09-05 23:45:10 +08:00
|
|
|
|
2002-09-05 19:42:55 +08:00
|
|
|
}
|
|
|
|
|
2002-09-05 23:45:10 +08:00
|
|
|
void Texture3D::Extensions::glTexImage3D( GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels) const
|
2002-09-05 19:42:55 +08:00
|
|
|
{
|
2002-09-28 03:04:46 +08:00
|
|
|
// ::glTexImage3D( target, level, internalFormat, width, height, depth, border, format, type, pixels);
|
2002-09-05 23:45:10 +08:00
|
|
|
if (_glTexImage3D)
|
2002-09-05 19:42:55 +08:00
|
|
|
{
|
2002-09-05 23:45:10 +08:00
|
|
|
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);
|
2002-09-20 22:51:59 +08:00
|
|
|
((GLTexImage3DProc)_glTexImage3D)( target, level, internalFormat, width, height, depth, border, format, type, pixels);
|
2002-09-05 19:42:55 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
notify(WARN)<<"Error: glTexImage3D not supported by OpenGL driver"<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-05 23:45:10 +08:00
|
|
|
void Texture3D::Extensions::glTexSubImage3D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels) const
|
2002-09-05 19:42:55 +08:00
|
|
|
{
|
2002-09-28 03:04:46 +08:00
|
|
|
// ::glTexSubImage3D( target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, pixels);
|
2002-09-05 23:45:10 +08:00
|
|
|
if (_glTexSubImage3D)
|
2002-09-05 19:42:55 +08:00
|
|
|
{
|
2002-09-05 23:45:10 +08:00
|
|
|
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);
|
2002-09-20 22:51:59 +08:00
|
|
|
((GLTexSubImage3DProc)_glTexSubImage3D)( target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, pixels);
|
2002-09-05 19:42:55 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
notify(WARN)<<"Error: glTexSubImage3D not supported by OpenGL driver"<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-09-29 18:01:46 +08:00
|
|
|
void Texture3D::Extensions::glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data) const
|
|
|
|
{
|
|
|
|
if (_glCompressedTexImage3D)
|
|
|
|
{
|
|
|
|
typedef void (APIENTRY * CompressedTexImage3DArbProc) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data);
|
|
|
|
((CompressedTexImage3DArbProc)_glCompressedTexImage3D)(target, level, internalformat, width, height, depth, border, imageSize, data);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
notify(WARN)<<"Error: glCompressedTexImage3D not supported by OpenGL driver"<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Texture3D::Extensions::glCompressedTexSubImage3D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data ) const
|
|
|
|
{
|
|
|
|
if (_glCompressedTexSubImage3D)
|
|
|
|
{
|
|
|
|
typedef void (APIENTRY * CompressedTexSubImage3DArbProc) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data);
|
|
|
|
((CompressedTexSubImage3DArbProc)_glCompressedTexSubImage3D)(target, level, xoffset, yoffset, zoffset, width, height, depth, format, imageSize, data);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
notify(WARN)<<"Error: glCompressedTexImage2D not supported by OpenGL driver"<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-05 23:45:10 +08:00
|
|
|
void Texture3D::Extensions::glCopyTexSubImage3D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height ) const
|
2002-09-05 19:42:55 +08:00
|
|
|
{
|
2002-09-28 03:04:46 +08:00
|
|
|
// ::glCopyTexSubImage3D(target, level, xoffset, yoffset, zoffset, x, y, width, height);
|
2002-09-05 23:45:10 +08:00
|
|
|
if (_glCopyTexSubImage3D)
|
2002-09-05 19:42:55 +08:00
|
|
|
{
|
2002-09-05 23:45:10 +08:00
|
|
|
typedef void (APIENTRY * GLCopyTexSubImageProc) ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height );
|
2002-09-20 22:51:59 +08:00
|
|
|
((GLCopyTexSubImageProc)_glCopyTexSubImage3D)(target, level, xoffset, yoffset, zoffset, x, y, width, height);
|
2002-09-05 19:42:55 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
notify(WARN)<<"Error: glCopyTexSubImage3D not supported by OpenGL driver"<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-05 23:45:10 +08:00
|
|
|
void Texture3D::Extensions::gluBuild3DMipmaps( GLenum target, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *data) const
|
2002-09-05 19:42:55 +08:00
|
|
|
{
|
2002-09-28 03:04:46 +08:00
|
|
|
// ::gluBuild3DMipmaps(target, internalFormat, width, height, depth, format, type, data);
|
2002-09-05 23:45:10 +08:00
|
|
|
if (_gluBuild3DMipmaps)
|
2002-09-05 19:42:55 +08:00
|
|
|
{
|
2002-09-05 23:45:10 +08:00
|
|
|
typedef void (APIENTRY * GLUBuild3DMipMapsProc) ( GLenum target, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *data);
|
2002-09-20 22:51:59 +08:00
|
|
|
((GLUBuild3DMipMapsProc)_gluBuild3DMipmaps)(target, internalFormat, width, height, depth, format, type, data);
|
2002-09-05 19:42:55 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
notify(WARN)<<"Error: gluBuild3DMipmaps not supported by OpenGL driver"<<std::endl;
|
|
|
|
}
|
|
|
|
}
|