/**************************************************************************\ * * This file is part of the Coin 3D visualization library. * Copyright (C) 1998-2007 by Systems in Motion. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * ("GPL") version 2 as published by the Free Software Foundation. * See the file LICENSE.GPL at the root directory of this source * distribution for additional information about the GNU GPL. * * For using Coin with software that can not be combined with the GNU * GPL, and for taking advantage of the additional benefits of our * support services, please contact Systems in Motion about acquiring * a Coin Professional Edition License. * * See http://www.coin3d.org/ for more information. * * Systems in Motion, Postboks 1283, Pirsenteret, 7462 Trondheim, NORWAY. * http://www.sim.no/ sales@sim.no coin-support@coin3d.org * \**************************************************************************/ /*! \class SoTextureScalePolicy SoTextureScalePolicy.h Inventor/nodes/SoTextureScalePolicy.h \brief The SoTextureScalePolicy class is a node for controlling the texture scale policy. \ingroup nodes If a texture map is of size != 2^n, it must be scaled before OpenGL can handle it. This node enables you to control how/if textures are scaled before it is sent to OpenGL. Also, if a texture map is bigger than the maximum OpenGL texture size (implementation and context dependent), it will be scaled down to the maximum size. You can avoid this by setting the texture policy to SoTextureScalePolicy::FRACTURE, in which case the texture will be split into several small subtextures before the geometry using the texture is rendered. Setting SoTextureScalePolicy::policy to SoTextureScalePolicy::FRACTURE will also cause the internal texture handling unit in Coin to automatically downsample the individual subtextures to not use more graphics card memory than necessary to cover the current screen size of the texture. These two aspects of SoTextureScalePolicy::FRACTURE rendering together, subtexture fracturing and automatic downsampling, makes it possible to have textures with almost unlimited size. The only real limit is the amount of memory on the system, since the entire texture must fit into CPU memory. The SoTextureScalePolicy::FRACTURE policy is also very handy for using the Coin library's built-in handling of non-power-of-2 textures. This will then be done completely transparent to the application programmer, for maximum convenience. Below is a very simple example which demonstrates how to use it. The texture has dimensions 3x3, but no scaling (and thereby interpolation) will have to be done when SoTextureScalePolicy::FRACTURE is specified: \verbatim #Inventor V2.1 ascii Separator { TextureScalePolicy { policy FRACTURE } Complexity { textureQuality 0.01 } # don't generate smoothed mipmaps Texture2 { image 3 3 4 # dimensions 3x3, RGBA (4-component) image 0xff0000ff 0x00ff00ff 0x0000ffff # red, green, blue 0xffff00ff 0xff00ffff 0x00ffffff # yellow, magenta, cyan 0x222222ff 0x777777ff 0xccccccff # dark, medium and light grey } Cube { } } \endverbatim Be aware that the triangle throughput is much slower when using the FRACTURE texture mode, since all triangles need to be clipped (using the CPU) against subtextures. It's therefore usually not a good idea to use the FRACTURE mode on large triangle meshes. \COIN_CLASS_EXTENSION FILE FORMAT/DEFAULTS: \code TextureScalePolicy { policy USE_TEXTURE_QUALITY quality 0.5 } \endcode \since Coin 2.0 */ // ************************************************************************* #include #include #include #include #include /*! \enum SoTextureScalePolicy::Policy Enumerates the available policy settings. */ /*! \var SoTextureScalePolicy::Policy SoTextureScalePolicy::USE_TEXTURE_QUALITY Uses the texture quality to decide whether to scale up or down. */ /*! \var SoTextureScalePolicy::Policy SoTextureScalePolicy::SCALE_DOWN Always scales down. */ /*! \var SoTextureScalePolicy::Policy SoTextureScalePolicy::SCALE_UP Always scales up. */ /*! \var SoTextureScalePolicy::Policy SoTextureScalePolicy::FRACTURE Splits the texture into several subtextures, and clips the geometry into each subtexture. Also automatically downsamples the subtextures to not use more graphics card memory than necessary versus the current screen size of the texture. These two features makes it possible to have textures with almost unlimited size. The only real limit is the amount of memory on the system, since the entire texture must fit into CPU memory. Be aware that the rendering is quite slow with this mode if the texture(s) will be mapped onto lots of polygon primitives. */ /*! \var SoSFEnum SoTextureScalePolicy::policy The policy setting. Default value is USE_TEXTURE_QUALITY. USE_TEXTURE_QUALITY means that SoComplexity::textureQuality will be used to decide if the texture should be scaled up or down. SoComplexity::textureQuality >= 0.7 means scale up, while < 0.7 means scale down. Textures smaller than 256 pixels are never scaled down since you lose too much information. */ /*! \var SoSFFloat SoTextureScalePolicy::quality The texture scale/resize quality. Default value is 0.5. This field can be used to force Coin to use a lower quality (but much faster) image resize function. Currently, if you set this field to a value < 0.5, a low quality resize function will be used, otherwise a high quality (but slow) function will be used. */ // ************************************************************************* SO_NODE_SOURCE(SoTextureScalePolicy); /*! Constructor. */ SoTextureScalePolicy::SoTextureScalePolicy(void) { SO_NODE_INTERNAL_CONSTRUCTOR(SoTextureScalePolicy); SO_NODE_ADD_FIELD(policy, (SoTextureScalePolicy::USE_TEXTURE_QUALITY)); SO_NODE_ADD_FIELD(quality, (0.5f)); SO_NODE_DEFINE_ENUM_VALUE(Policy, USE_TEXTURE_QUALITY); SO_NODE_DEFINE_ENUM_VALUE(Policy, SCALE_DOWN); SO_NODE_DEFINE_ENUM_VALUE(Policy, SCALE_UP); SO_NODE_DEFINE_ENUM_VALUE(Policy, FRACTURE); SO_NODE_SET_SF_ENUM_TYPE(policy, Policy); } /*! Destructor. */ SoTextureScalePolicy::~SoTextureScalePolicy() { } // Doc from superclass. void SoTextureScalePolicy::initClass(void) { SO_NODE_INTERNAL_INIT_CLASS(SoTextureScalePolicy, SO_FROM_COIN_2_0); SO_ENABLE(SoGLRenderAction, SoTextureScalePolicyElement); SO_ENABLE(SoGLRenderAction, SoTextureScaleQualityElement); } static SoTextureScalePolicyElement::Policy convert_policy(const SoTextureScalePolicy::Policy policy) { switch (policy) { default: assert(0 && "unknown policy"); case SoTextureScalePolicy::USE_TEXTURE_QUALITY: return SoTextureScalePolicyElement::USE_TEXTURE_QUALITY; break; case SoTextureScalePolicy::SCALE_DOWN: return SoTextureScalePolicyElement::SCALE_DOWN; break; case SoTextureScalePolicy::SCALE_UP: return SoTextureScalePolicyElement::SCALE_UP; break; case SoTextureScalePolicy::FRACTURE: return SoTextureScalePolicyElement::FRACTURE; break; } // needed for gcc 4.0.1 (Mac OS X) return SoTextureScalePolicyElement::USE_TEXTURE_QUALITY; } // Doc from superclass. void SoTextureScalePolicy::GLRender(SoGLRenderAction * action) { if (!this->policy.isIgnored()) { SoTextureScalePolicyElement::set(action->getState(), this, convert_policy((Policy)this->policy.getValue())); } if (!this->quality.isIgnored()) { SoTextureScaleQualityElement::set(action->getState(), this, this->quality.getValue()); } }