2003-01-22 00:45:36 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2003 Robert Osfield
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2001-10-04 23:12:57 +08:00
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
#ifndef OSG_TEXTURE
|
|
|
|
#define OSG_TEXTURE 1
|
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
#include <osg/GL>
|
|
|
|
#include <osg/Image>
|
|
|
|
#include <osg/StateAttribute>
|
|
|
|
#include <osg/ref_ptr>
|
|
|
|
#include <osg/Vec4>
|
2002-09-05 19:42:55 +08:00
|
|
|
#include <osg/buffered_value>
|
2002-08-28 23:28:11 +08:00
|
|
|
|
|
|
|
|
|
|
|
// if not defined by gl.h use the definition found in:
|
|
|
|
// http://oss.sgi.com/projects/ogl-sample/registry/EXT/texture_filter_anisotropic.txt
|
|
|
|
#ifndef GL_TEXTURE_MAX_ANISOTROPY_EXT
|
|
|
|
#define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef GL_ARB_texture_compression
|
2003-04-03 04:43:19 +08:00
|
|
|
#define GL_COMPRESSED_ALPHA_ARB 0x84E9
|
|
|
|
#define GL_COMPRESSED_LUMINANCE_ARB 0x84EA
|
|
|
|
#define GL_COMPRESSED_LUMINANCE_ALPHA_ARB 0x84EB
|
|
|
|
#define GL_COMPRESSED_INTENSITY_ARB 0x84EC
|
|
|
|
#define GL_COMPRESSED_RGB_ARB 0x84ED
|
|
|
|
#define GL_COMPRESSED_RGBA_ARB 0x84EE
|
|
|
|
#define GL_TEXTURE_COMPRESSION_HINT_ARB 0x84EF
|
|
|
|
#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB 0x86A0
|
|
|
|
#define GL_TEXTURE_COMPRESSED_ARB 0x86A1
|
|
|
|
#define GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A2
|
|
|
|
#define GL_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A3
|
2002-08-28 23:28:11 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef GL_EXT_texture_compression_s3tc
|
2003-04-03 04:43:19 +08:00
|
|
|
#define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0
|
|
|
|
#define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1
|
|
|
|
#define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2
|
|
|
|
#define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3
|
2002-08-28 23:28:11 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef GL_MIRRORED_REPEAT_IBM
|
|
|
|
#define GL_MIRRORED_REPEAT_IBM 0x8370
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef GL_CLAMP_TO_EDGE
|
|
|
|
#define GL_CLAMP_TO_EDGE 0x812F
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef GL_CLAMP_TO_BORDER_ARB
|
|
|
|
#define GL_CLAMP_TO_BORDER_ARB 0x812D
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef GL_GENERATE_MIPMAP_SGIS
|
|
|
|
#define GL_GENERATE_MIPMAP_SGIS 0x8191
|
|
|
|
#define GL_GENERATE_MIPMAP_HINT_SGIS 0x8192
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef GL_TEXTURE_3D
|
|
|
|
#define GL_TEXTURE_3D 0x806F
|
|
|
|
#endif
|
2002-08-25 23:31:44 +08:00
|
|
|
|
2003-03-04 23:47:28 +08:00
|
|
|
|
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
namespace osg {
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
/** Texture base class which encapsulates OpenGl texture functionality which common betweent the various types of OpenGL textures.*/
|
|
|
|
class SG_EXPORT Texture : public osg::StateAttribute
|
2001-01-11 00:32:10 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
public :
|
2002-08-28 23:28:11 +08:00
|
|
|
|
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
Texture();
|
|
|
|
|
2002-01-29 22:04:06 +08:00
|
|
|
/** Copy constructor using CopyOp to manage deep vs shallow copy.*/
|
2002-07-29 07:28:27 +08:00
|
|
|
Texture(const Texture& text,const CopyOp& copyop=CopyOp::SHALLOW_COPY);
|
2002-08-28 23:28:11 +08:00
|
|
|
|
|
|
|
virtual osg::Object* cloneType() const = 0;
|
|
|
|
virtual osg::Object* clone(const CopyOp& copyop) const = 0;
|
|
|
|
virtual bool isSameKindAs(const osg::Object* obj) const { return dynamic_cast<const Texture *>(obj)!=NULL; }
|
|
|
|
virtual const char* libraryName() const { return "osg"; }
|
|
|
|
virtual const char* className() const { return "Texture"; }
|
2002-09-02 20:31:35 +08:00
|
|
|
virtual Type getType() const { return TEXTURE; }
|
2002-08-28 23:28:11 +08:00
|
|
|
|
|
|
|
virtual bool isTextureAttribute() const { return true; }
|
|
|
|
|
|
|
|
enum WrapParameter {
|
|
|
|
WRAP_S,
|
|
|
|
WRAP_T,
|
|
|
|
WRAP_R
|
|
|
|
};
|
|
|
|
|
|
|
|
enum WrapMode {
|
|
|
|
CLAMP = GL_CLAMP,
|
|
|
|
CLAMP_TO_EDGE = GL_CLAMP_TO_EDGE,
|
|
|
|
CLAMP_TO_BORDER = GL_CLAMP_TO_BORDER_ARB,
|
|
|
|
REPEAT = GL_REPEAT,
|
|
|
|
MIRROR = GL_MIRRORED_REPEAT_IBM
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Set the texture wrap mode.*/
|
2002-09-02 20:31:35 +08:00
|
|
|
void setWrap(WrapParameter which, WrapMode wrap);
|
2002-08-28 23:28:11 +08:00
|
|
|
/** Get the texture wrap mode.*/
|
2002-09-02 20:31:35 +08:00
|
|
|
WrapMode getWrap(WrapParameter which) const;
|
2002-08-28 23:28:11 +08:00
|
|
|
|
|
|
|
|
|
|
|
/** Sets the border color for this texture. Makes difference only if
|
|
|
|
* wrap mode is CLAMP_TO_BORDER */
|
2002-09-04 16:14:04 +08:00
|
|
|
void setBorderColor(const Vec4& color) { _borderColor = color; dirtyTextureParameters(); }
|
2002-08-28 23:28:11 +08:00
|
|
|
|
2002-09-02 20:31:35 +08:00
|
|
|
const Vec4& getBorderColor() const { return _borderColor; }
|
2002-07-29 07:28:27 +08:00
|
|
|
|
2002-07-09 17:35:42 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
enum FilterParameter {
|
|
|
|
MIN_FILTER,
|
|
|
|
MAG_FILTER
|
|
|
|
};
|
2001-09-22 10:42:08 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
enum FilterMode {
|
|
|
|
LINEAR = GL_LINEAR,
|
|
|
|
LINEAR_MIPMAP_LINEAR = GL_LINEAR_MIPMAP_LINEAR,
|
|
|
|
LINEAR_MIPMAP_NEAREST = GL_LINEAR_MIPMAP_NEAREST,
|
|
|
|
NEAREST = GL_NEAREST,
|
|
|
|
NEAREST_MIPMAP_LINEAR = GL_NEAREST_MIPMAP_LINEAR,
|
|
|
|
NEAREST_MIPMAP_NEAREST = GL_NEAREST_MIPMAP_NEAREST
|
|
|
|
};
|
2001-09-20 05:08:56 +08:00
|
|
|
|
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
/** Set the texture filter mode.*/
|
2002-09-02 20:31:35 +08:00
|
|
|
void setFilter(FilterParameter which, FilterMode filter);
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
/** Get the texture filter mode.*/
|
2002-09-02 20:31:35 +08:00
|
|
|
FilterMode getFilter(FilterParameter which) const;
|
2002-07-29 07:28:27 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
/** Set the maximum anisotropy value, default value is 1.0 for
|
|
|
|
* no anisotropic filtering. If hardware does not support anisotropic
|
|
|
|
* filtering then normal filtering is used, equivilant to a max anisotropy value of 1.0.
|
|
|
|
* valid range is 1.0f upwards. The maximum value depends on the graphics
|
|
|
|
* system being used.*/
|
|
|
|
void setMaxAnisotropy(float anis);
|
|
|
|
|
|
|
|
/** Get the maximum anisotropy value.*/
|
|
|
|
inline float getMaxAnisotropy() const { return _maxAnisotropy; }
|
|
|
|
|
2003-04-01 05:41:17 +08:00
|
|
|
/** Set the hint of whether to use hardware mip map generation where available.*/
|
|
|
|
inline void setUseHardwareMipMapGeneration(bool useHardwareMipMapGeneration) { _useHardwareMipMapGeneration = useHardwareMipMapGeneration; }
|
|
|
|
|
|
|
|
/** Get the hint of whether to use hardware mip map generation where available.*/
|
|
|
|
inline bool getUseHardwareMipMapGeneration() const { return _useHardwareMipMapGeneration; }
|
|
|
|
|
2003-04-07 20:51:00 +08:00
|
|
|
/** Set the automatic unreference of image data after the texture has been set up in apply, on (true) or off (false).
|
|
|
|
* If the image data is only referened by this Texture then the image data will be autoamtically deleted.*/
|
|
|
|
inline void setUnRefImageDataAfterApply(bool flag) { _unrefImageDataAfterApply = flag; }
|
|
|
|
|
|
|
|
/** Get the automatic unreference of image data after the texture has been set up in apply.*/
|
|
|
|
inline bool getUnRefImageDataAfterApply() const { return _unrefImageDataAfterApply; }
|
|
|
|
|
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
enum InternalFormatMode {
|
|
|
|
USE_IMAGE_DATA_FORMAT,
|
|
|
|
USE_USER_DEFINED_FORMAT,
|
|
|
|
USE_ARB_COMPRESSION,
|
|
|
|
USE_S3TC_DXT1_COMPRESSION,
|
|
|
|
USE_S3TC_DXT3_COMPRESSION,
|
|
|
|
USE_S3TC_DXT5_COMPRESSION
|
|
|
|
};
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
/** Set the internal format mode.
|
|
|
|
* Note, If the mode is set USE_IMAGE_DATA_FORMAT, USE_ARB_COMPRESSION,
|
|
|
|
* USE_S3TC_COMPRESSION the internalFormat is automatically selected,
|
|
|
|
* and will overwrite the previous _internalFormat.
|
2001-09-20 05:08:56 +08:00
|
|
|
*/
|
2002-09-02 20:31:35 +08:00
|
|
|
inline void setInternalFormatMode(InternalFormatMode mode) { _internalFormatMode = mode; }
|
2002-03-14 08:07:29 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
/** Get the internal format mode.*/
|
2002-09-02 20:31:35 +08:00
|
|
|
inline InternalFormatMode getInternalFormatMode() const { return _internalFormatMode; }
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
/** Set the internal format to use when creating OpenGL textures.
|
|
|
|
* Also sets the internalFormatMode to USE_USER_DEFINED_FORMAT.
|
|
|
|
*/
|
2002-09-02 20:31:35 +08:00
|
|
|
inline void setInternalFormat(GLint internalFormat)
|
2001-09-20 05:08:56 +08:00
|
|
|
{
|
|
|
|
_internalFormatMode = USE_USER_DEFINED_FORMAT;
|
2002-08-25 03:39:39 +08:00
|
|
|
_internalFormat = internalFormat;
|
2001-09-20 05:08:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Get the internal format to use when creating OpenGL textures.*/
|
2002-09-02 20:31:35 +08:00
|
|
|
inline GLint getInternalFormat() const { if (_internalFormat==0) computeInternalFormat(); return _internalFormat; }
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
bool isCompressedInternalFormat() const;
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2002-09-05 19:42:55 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
/** Get the handle to the texture object for the current context.*/
|
2003-02-15 00:52:47 +08:00
|
|
|
inline GLuint& getTextureObject(unsigned int contextID) const
|
2002-07-29 07:28:27 +08:00
|
|
|
{
|
2002-08-28 23:28:11 +08:00
|
|
|
return _handleList[contextID];
|
2002-07-29 07:28:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-10 20:11:40 +08:00
|
|
|
/** get the dirty flag for the current contextID.*/
|
2003-02-15 00:52:47 +08:00
|
|
|
inline unsigned int& getTextureParameterDirty(unsigned int contextID) const
|
2002-09-04 16:14:04 +08:00
|
|
|
{
|
|
|
|
return _texParametersDirtyList[contextID];
|
|
|
|
}
|
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
/** Force a recompile on next apply() of associated OpenGL texture objects.*/
|
|
|
|
void dirtyTextureObject();
|
2002-07-29 07:28:27 +08:00
|
|
|
|
2002-09-04 16:14:04 +08:00
|
|
|
/** Force a resetting on next apply() of associated OpenGL texture parameters.*/
|
|
|
|
void dirtyTextureParameters();
|
2002-03-28 06:51:58 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
|
|
|
|
/** use deleteTextureObject instead of glDeleteTextures to allow
|
|
|
|
* OpenGL texture objects to cached until they can be deleted
|
|
|
|
* by the OpenGL context in which they were created, specified
|
|
|
|
* by contextID.*/
|
2003-02-15 00:52:47 +08:00
|
|
|
static void deleteTextureObject(unsigned int contextID,GLuint handle);
|
2002-08-28 23:28:11 +08:00
|
|
|
|
|
|
|
/** flush all the cached display list which need to be deleted
|
|
|
|
* in the OpenGL context related to contextID.*/
|
2003-02-15 00:52:47 +08:00
|
|
|
static void flushDeletedTextureObjects(unsigned int contextID);
|
2002-08-16 23:14:43 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
/** Texture is pure virtual base class, apply must be overriden. */
|
|
|
|
virtual void apply(State& state) const = 0;
|
2002-08-16 23:14:43 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
/** Calls apply(state) to compile the texture. */
|
|
|
|
virtual void compile(State& state) const;
|
2002-08-16 23:14:43 +08:00
|
|
|
|
2002-09-17 04:58:05 +08:00
|
|
|
/** Extensions class which encapsulates the querring of extensions and
|
|
|
|
* associated function pointers, and provide convinience wrappers to
|
|
|
|
* check for the extensions or use the associated functions.*/
|
2003-03-19 03:42:34 +08:00
|
|
|
class SG_EXPORT Extensions : public osg::Referenced
|
2002-09-17 04:58:05 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
Extensions();
|
|
|
|
|
|
|
|
Extensions(const Extensions& rhs);
|
|
|
|
|
|
|
|
void lowestCommonDenominator(const Extensions& rhs);
|
|
|
|
|
|
|
|
void setupGLExtenions();
|
|
|
|
|
2003-04-10 21:41:45 +08:00
|
|
|
void setTextureFilterAnisotropicSupported(bool flag) { _isTextureFilterAnisotropicSupported=flag; }
|
2002-09-17 04:58:05 +08:00
|
|
|
bool isTextureFilterAnisotropicSupported() const { return _isTextureFilterAnisotropicSupported; }
|
2003-04-10 21:41:45 +08:00
|
|
|
|
|
|
|
void setTextureCompressionARBSupported(bool flag) { _isTextureCompressionARBSupported=flag; }
|
2002-09-17 04:58:05 +08:00
|
|
|
bool isTextureCompressionARBSupported() const { return _isTextureCompressionARBSupported; }
|
2003-04-10 21:41:45 +08:00
|
|
|
|
|
|
|
void setTextureCompressionS3TCSupported(bool flag) { _isTextureCompressionS3TCSupported=flag; }
|
2002-09-17 04:58:05 +08:00
|
|
|
bool isTextureCompressionS3TCSupported() const { return _isTextureCompressionS3TCSupported; }
|
2003-04-10 21:41:45 +08:00
|
|
|
|
|
|
|
void setTextureMirroredRepeatSupported(bool flag) { _isTextureMirroredRepeatSupported=flag; }
|
2002-09-17 04:58:05 +08:00
|
|
|
bool isTextureMirroredRepeatSupported() const { return _isTextureMirroredRepeatSupported; }
|
2003-04-10 21:41:45 +08:00
|
|
|
|
|
|
|
void setTextureEdgeClampSupported(bool flag) { _isTextureEdgeClampSupported=flag; }
|
2002-09-17 04:58:05 +08:00
|
|
|
bool isTextureEdgeClampSupported() const { return _isTextureEdgeClampSupported; }
|
2003-04-10 21:41:45 +08:00
|
|
|
|
|
|
|
void setTextureBorderClampSupported(bool flag) { _isTextureBorderClampSupported=flag; }
|
2002-09-17 04:58:05 +08:00
|
|
|
bool isTextureBorderClampSupported() const { return _isTextureBorderClampSupported; }
|
2003-04-10 21:41:45 +08:00
|
|
|
|
|
|
|
void setGenerateMipMapSupported(bool flag) { _isGenerateMipMapSupported=flag; }
|
2003-03-04 23:47:28 +08:00
|
|
|
bool isGenerateMipMapSupported() const { return _isGenerateMipMapSupported; }
|
2002-09-17 04:58:05 +08:00
|
|
|
|
2003-04-10 21:41:45 +08:00
|
|
|
void setMaxTextureSize(GLint maxsize) { _maxTextureSize=maxsize; }
|
2002-09-17 04:58:05 +08:00
|
|
|
GLint maxTextureSize() const { return _maxTextureSize; }
|
|
|
|
|
|
|
|
bool isCompressedTexImage2DSupported() const { return _glCompressedTexImage2D!=0; }
|
|
|
|
|
2003-04-10 21:41:45 +08:00
|
|
|
void setCompressedTexImage2DProc(void* ptr) { _glCompressedTexImage2D = ptr; }
|
2002-09-17 04:58:05 +08:00
|
|
|
void glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data) const;
|
2003-04-10 21:41:45 +08:00
|
|
|
|
|
|
|
void setCompressedTexSubImage2DProc(void* ptr) { _glCompressedTexSubImage2D = ptr; }
|
2003-04-01 05:41:17 +08:00
|
|
|
void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei type, const GLvoid *data) const;
|
2003-04-10 21:41:45 +08:00
|
|
|
|
|
|
|
void setGetCompressedTexImageProc(void* ptr) { _glGetCompressedTexImage = ptr; }
|
2003-04-03 02:26:34 +08:00
|
|
|
void glGetCompressedTexImage(GLenum target, GLint level, GLvoid *data) const;
|
2002-09-17 04:58:05 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
~Extensions() {}
|
|
|
|
|
|
|
|
bool _isTextureFilterAnisotropicSupported;
|
|
|
|
bool _isTextureCompressionARBSupported;
|
|
|
|
bool _isTextureCompressionS3TCSupported;
|
|
|
|
bool _isTextureMirroredRepeatSupported;
|
|
|
|
bool _isTextureEdgeClampSupported;
|
|
|
|
bool _isTextureBorderClampSupported;
|
2003-03-04 23:47:28 +08:00
|
|
|
bool _isGenerateMipMapSupported;
|
2002-09-17 04:58:05 +08:00
|
|
|
|
|
|
|
GLint _maxTextureSize;
|
|
|
|
|
|
|
|
void* _glCompressedTexImage2D;
|
2003-04-01 05:41:17 +08:00
|
|
|
void* _glCompressedTexSubImage2D;
|
2003-04-03 02:26:34 +08:00
|
|
|
void* _glGetCompressedTexImage;
|
2002-09-17 04:58:05 +08:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Function to call to get the extension of a specified context.
|
|
|
|
* If the Exentsion object for that context has not yet been created then
|
|
|
|
* and the 'createIfNotInitalized' flag been set to false then returns NULL.
|
|
|
|
* 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..*/
|
2003-04-10 21:41:45 +08:00
|
|
|
static Extensions* getExtensions(unsigned int contextID,bool createIfNotInitalized);
|
2002-09-17 04:58:05 +08:00
|
|
|
|
|
|
|
/** 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.*/
|
2003-02-15 03:47:59 +08:00
|
|
|
static void setExtensions(unsigned int contextID,Extensions* extensions);
|
2002-09-17 04:58:05 +08:00
|
|
|
|
2003-04-01 05:41:17 +08:00
|
|
|
/** Helper method which does the creation of the texture itself, but does not set or use texture binding.
|
|
|
|
* Note, do not call this method directly unless you are implementing your own Subload callback*/
|
2003-04-01 19:49:09 +08:00
|
|
|
void applyTexImage2D_load(GLenum target, const Image* image, State& state, GLsizei& width, GLsizei& height,GLsizei& numMimpmapLevels) const;
|
2003-04-01 05:41:17 +08:00
|
|
|
|
|
|
|
/** Helper method which subloads images to the texture itself, but does not set or use texture binding.
|
|
|
|
* Note, do not call this method directly unless you are implementing your own Subload callback*/
|
2003-04-01 19:49:09 +08:00
|
|
|
void applyTexImage2D_subload(GLenum target, const Image* image, State& state, GLsizei& width, GLsizei& height,GLsizei& numMimpmapLevels) const;
|
2003-04-01 05:41:17 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
protected :
|
|
|
|
|
|
|
|
virtual ~Texture();
|
2002-08-16 21:33:32 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
virtual void computeInternalFormat() const = 0;
|
2002-08-16 21:33:32 +08:00
|
|
|
|
2003-04-01 19:49:09 +08:00
|
|
|
void computeInternalFormatWithImage(const osg::Image& image) const;
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
bool isCompressedInternalFormat(GLint internalFormat) const;
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
/** Helper method which does setting of texture paramters. */
|
|
|
|
void applyTexParameters(GLenum target, State& state) const;
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2002-03-15 00:01:21 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
/** return -1 if *this < *rhs, 0 if *this==*rhs, 1 if *this>*rhs.*/
|
|
|
|
int compareTexture(const Texture& rhs) const;
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2002-09-05 19:42:55 +08:00
|
|
|
typedef buffered_value<GLuint> TextureNameList;
|
2002-08-28 23:28:11 +08:00
|
|
|
mutable TextureNameList _handleList;
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2003-02-15 03:47:59 +08:00
|
|
|
typedef buffered_value<unsigned int> TexParameterDirtyList;
|
2002-09-04 16:14:04 +08:00
|
|
|
mutable TexParameterDirtyList _texParametersDirtyList;
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
WrapMode _wrap_s;
|
|
|
|
WrapMode _wrap_t;
|
|
|
|
WrapMode _wrap_r;
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
FilterMode _min_filter;
|
|
|
|
FilterMode _mag_filter;
|
|
|
|
float _maxAnisotropy;
|
2003-04-01 05:41:17 +08:00
|
|
|
bool _useHardwareMipMapGeneration;
|
2003-04-07 20:51:00 +08:00
|
|
|
bool _unrefImageDataAfterApply;
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
Vec4 _borderColor;
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
InternalFormatMode _internalFormatMode;
|
|
|
|
mutable GLint _internalFormat;
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
};
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-08-25 23:31:44 +08:00
|
|
|
#endif
|