2012-03-22 01:36:20 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2003-01-22 00:45:36 +08:00
|
|
|
*
|
2012-03-22 01:36:20 +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
|
2003-01-22 00:45:36 +08:00
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
2012-03-22 01:36:20 +08:00
|
|
|
*
|
2003-01-22 00:45:36 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2012-03-22 01:36:20 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2003-01-22 00:45:36 +08:00
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
#ifndef OSG_TEXTURE2D
|
|
|
|
#define OSG_TEXTURE2D 1
|
|
|
|
|
2002-08-28 23:28:11 +08:00
|
|
|
#include <osg/Texture>
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
namespace osg {
|
|
|
|
|
2010-09-24 22:53:10 +08:00
|
|
|
/** Encapsulates OpenGL 2D texture functionality. Doesn't support cube maps,
|
2004-09-14 00:10:59 +08:00
|
|
|
* so ignore \a face parameters.
|
|
|
|
*/
|
2005-04-12 01:14:17 +08:00
|
|
|
class OSG_EXPORT Texture2D : public Texture
|
2002-08-25 03:39:39 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
public :
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
Texture2D();
|
|
|
|
|
2004-03-09 22:59:33 +08:00
|
|
|
Texture2D(Image* image);
|
2003-06-25 05:57:13 +08:00
|
|
|
|
2015-10-22 21:42:19 +08:00
|
|
|
template<class T> Texture2D(const osg::ref_ptr<T>& image):
|
|
|
|
_textureWidth(0),
|
|
|
|
_textureHeight(0),
|
|
|
|
_numMipmapLevels(0)
|
|
|
|
{
|
|
|
|
setUseHardwareMipMapGeneration(true);
|
|
|
|
setImage(image.get());
|
|
|
|
}
|
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Copy constructor using CopyOp to manage deep vs shallow copy. */
|
2002-08-25 03:39:39 +08:00
|
|
|
Texture2D(const Texture2D& text,const CopyOp& copyop=CopyOp::SHALLOW_COPY);
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
META_StateAttribute(osg, Texture2D,TEXTURE);
|
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Return -1 if *this < *rhs, 0 if *this==*rhs, 1 if *this>*rhs. */
|
2002-08-25 03:39:39 +08:00
|
|
|
virtual int compare(const StateAttribute& rhs) const;
|
|
|
|
|
2005-07-27 19:27:44 +08:00
|
|
|
virtual GLenum getTextureTarget() const { return GL_TEXTURE_2D; }
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Sets the texture image. */
|
2002-08-25 03:39:39 +08:00
|
|
|
void setImage(Image* image);
|
|
|
|
|
2015-10-22 21:42:19 +08:00
|
|
|
template<class T> void setImage(const ref_ptr<T>& image) { setImage(image.get()); }
|
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Gets the texture image. */
|
2002-08-25 03:39:39 +08:00
|
|
|
Image* getImage() { return _image.get(); }
|
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Gets the const texture image. */
|
2002-08-25 03:39:39 +08:00
|
|
|
inline const Image* getImage() const { return _image.get(); }
|
|
|
|
|
2018-02-13 20:01:57 +08:00
|
|
|
/** return true if the texture image data has been modified and the associated GL texture object needs to be updated.*/
|
|
|
|
virtual bool isDirty(unsigned int contextID) const { return (_image.valid() && _image->getModifiedCount()!=_modifiedCount[contextID]); }
|
|
|
|
|
2005-02-09 18:39:45 +08:00
|
|
|
inline unsigned int& getModifiedCount(unsigned int contextID) const
|
2003-04-07 17:46:06 +08:00
|
|
|
{
|
2005-02-09 18:39:45 +08:00
|
|
|
// get the modified count for the current contextID.
|
|
|
|
return _modifiedCount[contextID];
|
2003-04-07 17:46:06 +08:00
|
|
|
}
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2004-07-27 18:11:45 +08:00
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Sets the texture image, ignoring face. */
|
2004-07-27 18:11:45 +08:00
|
|
|
virtual void setImage(unsigned int, Image* image) { setImage(image); }
|
|
|
|
|
2015-10-22 21:42:19 +08:00
|
|
|
template<class T> void setImage(unsigned int, const ref_ptr<T>& image) { setImage(image.get()); }
|
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Gets the texture image, ignoring face. */
|
2004-07-27 18:11:45 +08:00
|
|
|
virtual Image* getImage(unsigned int) { return _image.get(); }
|
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Gets the const texture image, ignoring face. */
|
2004-07-27 18:11:45 +08:00
|
|
|
virtual const Image* getImage(unsigned int) const { return _image.get(); }
|
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Gets the number of images that can be assigned to the Texture. */
|
2004-07-27 18:11:45 +08:00
|
|
|
virtual unsigned int getNumImages() const { return 1; }
|
|
|
|
|
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Sets the texture width and height. If width or height are zero,
|
|
|
|
* calculate the respective value from the source image size. */
|
2002-09-02 20:31:35 +08:00
|
|
|
inline void setTextureSize(int width, int height) const
|
2002-08-25 03:39:39 +08:00
|
|
|
{
|
|
|
|
_textureWidth = width;
|
|
|
|
_textureHeight = height;
|
|
|
|
}
|
|
|
|
|
2004-12-13 09:07:24 +08:00
|
|
|
void setTextureWidth(int width) { _textureWidth=width; }
|
|
|
|
void setTextureHeight(int height) { _textureHeight=height; }
|
2006-08-03 23:57:39 +08:00
|
|
|
|
|
|
|
virtual int getTextureWidth() const { return _textureWidth; }
|
|
|
|
virtual int getTextureHeight() const { return _textureHeight; }
|
|
|
|
virtual int getTextureDepth() const { return 1; }
|
2003-03-03 05:05:05 +08:00
|
|
|
|
2005-04-12 01:14:17 +08:00
|
|
|
class OSG_EXPORT SubloadCallback : public Referenced
|
2002-08-25 03:39:39 +08:00
|
|
|
{
|
|
|
|
public:
|
2010-12-03 22:18:16 +08:00
|
|
|
|
|
|
|
virtual bool textureObjectValid(const Texture2D& texture, State& state) const
|
|
|
|
{
|
|
|
|
return texture.textureObjectValid(state);
|
|
|
|
}
|
|
|
|
|
2015-08-14 23:25:08 +08:00
|
|
|
virtual osg::ref_ptr<TextureObject> generateTextureObject(const Texture2D& texture, State& state) const
|
2010-10-14 21:35:36 +08:00
|
|
|
{
|
2015-08-14 23:25:08 +08:00
|
|
|
return osg::Texture::generateTextureObject(&texture, state.getContextID(), GL_TEXTURE_2D);
|
2010-10-14 21:35:36 +08:00
|
|
|
}
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
virtual void load(const Texture2D& texture,State& state) const = 0;
|
|
|
|
virtual void subload(const Texture2D& texture,State& state) const = 0;
|
|
|
|
};
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
void setSubloadCallback(SubloadCallback* cb) { _subloadCallback = cb;; }
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
SubloadCallback* getSubloadCallback() { return _subloadCallback.get(); }
|
|
|
|
|
|
|
|
const SubloadCallback* getSubloadCallback() const { return _subloadCallback.get(); }
|
|
|
|
|
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Helper function. Sets the number of mipmap levels created for this
|
2007-12-11 01:30:18 +08:00
|
|
|
* texture. Should only be called within an osg::Texture::apply(), or
|
2004-09-14 00:10:59 +08:00
|
|
|
* during a custom OpenGL texture load. */
|
2003-04-30 19:40:17 +08:00
|
|
|
void setNumMipmapLevels(unsigned int num) const { _numMipmapLevels=num; }
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Gets the number of mipmap levels created. */
|
2003-04-30 19:40:17 +08:00
|
|
|
unsigned int getNumMipmapLevels() const { return _numMipmapLevels; }
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Copies pixels into a 2D texture image, as per glCopyTexImage2D.
|
2002-08-25 03:39:39 +08:00
|
|
|
* Creates an OpenGL texture object from the current OpenGL background
|
2004-09-14 00:10:59 +08:00
|
|
|
* framebuffer contents at position \a x, \a y with width \a width and
|
|
|
|
* height \a height. \a width and \a height must be a power of two. */
|
2002-08-25 03:39:39 +08:00
|
|
|
void copyTexImage2D(State& state, int x, int y, int width, int height );
|
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Copies a two-dimensional texture subimage, as per
|
|
|
|
* glCopyTexSubImage2D. Updates a portion of an existing OpenGL
|
|
|
|
* texture object from the current OpenGL background framebuffer
|
|
|
|
* contents at position \a x, \a y with width \a width and height
|
|
|
|
* \a height. Loads framebuffer data into the texture using offsets
|
|
|
|
* \a xoffset and \a yoffset. \a width and \a height must be powers
|
|
|
|
* of two. */
|
2002-08-25 03:39:39 +08:00
|
|
|
void copyTexSubImage2D(State& state, int xoffset, int yoffset, int x, int y, int width, int height );
|
|
|
|
|
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Bind the texture object. If the texture object hasn't already been
|
|
|
|
* compiled, create the texture mipmap levels. */
|
2002-08-25 03:39:39 +08:00
|
|
|
virtual void apply(State& state) const;
|
|
|
|
|
2010-12-03 22:18:16 +08:00
|
|
|
|
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
protected :
|
|
|
|
|
|
|
|
virtual ~Texture2D();
|
|
|
|
|
|
|
|
virtual void computeInternalFormat() const;
|
2007-09-11 20:04:58 +08:00
|
|
|
void allocateMipmap(State& state) const;
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2010-12-03 22:18:16 +08:00
|
|
|
/** Return true of the TextureObject assigned to the context associate with osg::State object is valid.*/
|
|
|
|
bool textureObjectValid(State& state) const;
|
|
|
|
|
|
|
|
friend class SubloadCallback;
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2003-04-01 19:49:09 +08:00
|
|
|
ref_ptr<Image> _image;
|
2002-08-25 03:39:39 +08:00
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Subloaded images can have different texture and image sizes. */
|
2002-08-25 03:39:39 +08:00
|
|
|
mutable GLsizei _textureWidth, _textureHeight;
|
2012-03-22 01:36:20 +08:00
|
|
|
|
|
|
|
/** Number of mipmap levels created. */
|
2003-04-30 19:40:17 +08:00
|
|
|
mutable GLsizei _numMipmapLevels;
|
2002-08-25 03:39:39 +08:00
|
|
|
|
|
|
|
ref_ptr<SubloadCallback> _subloadCallback;
|
2003-04-07 17:46:06 +08:00
|
|
|
|
2005-02-09 18:39:45 +08:00
|
|
|
typedef buffered_value<unsigned int> ImageModifiedCount;
|
|
|
|
mutable ImageModifiedCount _modifiedCount;
|
2003-04-07 17:46:06 +08:00
|
|
|
|
2002-08-25 03:39:39 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|