| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- /*
- -----------------------------------------------------------------------------
- This source file is part of OGRE
- (Object-oriented Graphics Rendering Engine)
- For the latest info, see http://www.ogre3d.org/
- Copyright (c) 2000-2011 Torus Knot Software Ltd
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
- -----------------------------------------------------------------------------
- */
- #include "CmGLSupport.h"
- #include "CmGLTexture.h"
- namespace CamelotEngine {
- void GLSupport::setConfigOption(const String &name, const String &value)
- {
- ConfigOptionMap::iterator it = mOptions.find(name);
- if (it != mOptions.end())
- it->second.currentValue = value;
- }
- ConfigOptionMap& GLSupport::getConfigOptions(void)
- {
- return mOptions;
- }
- void GLSupport::initialiseExtensions(void)
- {
- // Set version string
- const GLubyte* pcVer = glGetString(GL_VERSION);
- assert(pcVer && "Problems getting GL version string using glGetString");
-
- String tmpStr = (const char*)pcVer;
- mVersion = tmpStr.substr(0, tmpStr.find(" "));
- // Get vendor
- const GLubyte* pcVendor = glGetString(GL_VENDOR);
- tmpStr = (const char*)pcVendor;
- mVendor = tmpStr.substr(0, tmpStr.find(" "));
- // Set extension list
- StringStream ext;
- String str;
- const GLubyte* pcExt = glGetString(GL_EXTENSIONS);
- assert(pcExt && "Problems getting GL extension string using glGetString");
- ext << pcExt;
- while(ext >> str)
- {
- extensionList.insert(str);
- }
- }
- bool GLSupport::checkMinGLVersion(const String& v) const
- {
- unsigned int first, second, third;
- unsigned int cardFirst, cardSecond, cardThird;
- if(v == mVersion)
- return true;
- String::size_type pos = v.find(".");
- if(pos == String::npos)
- return false;
- String::size_type pos1 = v.rfind(".");
- if(pos1 == String::npos)
- return false;
- first = ::atoi(v.substr(0, pos).c_str());
- second = ::atoi(v.substr(pos + 1, pos1 - (pos + 1)).c_str());
- third = ::atoi(v.substr(pos1 + 1, v.length()).c_str());
- pos = mVersion.find(".");
- if(pos == String::npos)
- return false;
- pos1 = mVersion.rfind(".");
- if(pos1 == String::npos)
- return false;
- cardFirst = ::atoi(mVersion.substr(0, pos).c_str());
- cardSecond = ::atoi(mVersion.substr(pos + 1, pos1 - (pos + 1)).c_str());
- cardThird = ::atoi(mVersion.substr(pos1 + 1, mVersion.length()).c_str());
- if(first <= cardFirst && second <= cardSecond && third <= cardThird)
- return true;
- return false;
- }
- bool GLSupport::checkExtension(const String& ext) const
- {
- if(extensionList.find(ext) == extensionList.end())
- return false;
-
- return true;
- }
-
- bool GLSupport::supportsPBuffers()
- {
- return (GLEW_ARB_pixel_buffer_object || GLEW_EXT_pixel_buffer_object) != GL_FALSE;
- }
- GLPBuffer* GLSupport::createPBuffer(PixelComponentType format, size_t width, size_t height)
- {
- return 0;
- }
- }
|