/* ----------------------------------------------------------------------------- This source file is part of OGRE (Object-oriented Graphics Rendering Engine) For the latest info, see http://www.ogre3d.org/ Copyright (c) 2000-2005 The OGRE Team Also see acknowledgements in Readme.html This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program 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 GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA, or go to http://www.gnu.org/copyleft/lesser.txt. ----------------------------------------------------------------------------- */ #include "OgreGLTextureManager.h" #include "OgreRoot.h" #include "OgreRenderSystem.h" #include "OgreGLRenderTexture.h" namespace Ogre { //----------------------------------------------------------------------------- GLTextureManager::GLTextureManager(GLSupport& support) : TextureManager(), mGLSupport(support), mWarningTextureID(0) { // register with group manager ResourceGroupManager::getSingleton()._registerResourceManager(mResourceType, this); createWarningTexture(); } //----------------------------------------------------------------------------- GLTextureManager::~GLTextureManager() { // unregister with group manager ResourceGroupManager::getSingleton()._unregisterResourceManager(mResourceType); // Delete warning texture glDeleteTextures(1, &mWarningTextureID); } //----------------------------------------------------------------------------- Resource* GLTextureManager::createImpl(const String& name, ResourceHandle handle, const String& group, bool isManual, ManualResourceLoader* loader, const NameValuePairList* createParams) { return new GLTexture(this, name, handle, group, isManual, loader, mGLSupport); } //----------------------------------------------------------------------------- void GLTextureManager::createWarningTexture() { // Generate warning texture size_t width = 8; size_t height = 8; uint32 *data = new uint32[width*height]; // 0xXXRRGGBB // Yellow/black stripes for(size_t y=0; ygetCapabilities(); // Check compressed texture support // if a compressed format not supported, revert to PF_A8R8G8B8 if(PixelUtil::isCompressed(format) && !caps->hasCapability( RSC_TEXTURE_COMPRESSION_DXT )) { return PF_A8R8G8B8; } // if floating point textures not supported, revert to PF_A8R8G8B8 if(PixelUtil::isFloatingPoint(format) && !caps->hasCapability( RSC_TEXTURE_FLOAT )) { return PF_A8R8G8B8; } // Check if this is a valid rendertarget format if( usage & TU_RENDERTARGET ) { /// Get closest supported alternative /// If mFormat is supported it's returned return GLRTTManager::getSingleton().getSupportedAlternative(format); } // Supported return format; } }