2012-04-19 14:35:52 +08:00
|
|
|
/****************************************************************************
|
2012-06-12 01:43:07 +08:00
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
2012-04-19 14:35:52 +08:00
|
|
|
Copyright (c) 2010 Ricardo Quesada
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __CCCONFIGURATION_H__
|
|
|
|
#define __CCCONFIGURATION_H__
|
|
|
|
|
|
|
|
#include "CCObject.h"
|
|
|
|
#include <string>
|
|
|
|
#include "CCGL.h"
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief CCConfiguration contains some openGL variables
|
|
|
|
@since v0.99.0
|
|
|
|
*/
|
|
|
|
class CC_DLL CCConfiguration : public CCObject
|
|
|
|
{
|
2012-04-20 11:39:12 +08:00
|
|
|
public:
|
2012-05-23 12:11:53 +08:00
|
|
|
/** returns a shared instance of CCConfiguration */
|
2012-04-20 11:39:12 +08:00
|
|
|
static CCConfiguration *sharedConfiguration(void);
|
2012-05-23 12:11:53 +08:00
|
|
|
/** purge the shared instance of CCConfiguration */
|
|
|
|
static void purgeConfiguration(void);
|
2012-04-19 14:35:52 +08:00
|
|
|
public:
|
|
|
|
|
|
|
|
/** OpenGL Max texture size. */
|
|
|
|
inline int getMaxTextureSize(void)
|
|
|
|
{
|
|
|
|
return m_nMaxTextureSize;
|
|
|
|
}
|
2012-04-20 11:39:12 +08:00
|
|
|
|
|
|
|
/** OpenGL Max Modelview Stack Depth. */
|
|
|
|
inline int getMaxModelviewStackDepth(void)
|
|
|
|
{
|
|
|
|
return m_nMaxModelviewStackDepth;
|
|
|
|
}
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-04-20 11:39:12 +08:00
|
|
|
/** returns the maximum texture units
|
|
|
|
@since v2.0.0
|
|
|
|
*/
|
2012-04-19 14:35:52 +08:00
|
|
|
inline int getMaxTextureUnits(void)
|
|
|
|
{
|
|
|
|
return m_nMaxTextureUnits;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Whether or not the GPU supports NPOT (Non Power Of Two) textures.
|
2012-04-20 11:39:12 +08:00
|
|
|
OpenGL ES 2.0 already supports NPOT (iOS).
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
@since v0.99.2
|
|
|
|
*/
|
|
|
|
inline bool isSupportsNPOT(void)
|
|
|
|
{
|
|
|
|
return m_bSupportsNPOT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Whether or not PVR Texture Compressed is supported */
|
|
|
|
inline bool isSupportsPVRTC(void)
|
|
|
|
{
|
|
|
|
return m_bSupportsPVRTC;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Whether or not BGRA8888 textures are supported.
|
|
|
|
@since v0.99.2
|
|
|
|
*/
|
|
|
|
inline bool isSupportsBGRA8888(void)
|
|
|
|
{
|
|
|
|
return m_bSupportsBGRA8888;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Whether or not glDiscardFramebufferEXT is supported
|
|
|
|
@since v0.99.2
|
|
|
|
*/
|
|
|
|
inline bool isSupportsDiscardFramebuffer(void)
|
|
|
|
{
|
|
|
|
return m_bSupportsDiscardFramebuffer;
|
|
|
|
}
|
|
|
|
|
2012-06-12 01:43:07 +08:00
|
|
|
/** Whether or not shareable VAOs are supported.
|
|
|
|
@since v2.0.0
|
|
|
|
*/
|
|
|
|
inline bool isSupportsShareableVAO(void)
|
|
|
|
{
|
|
|
|
return m_bSupportsShareableVAO;
|
|
|
|
}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
/** returns whether or not an OpenGL is supported */
|
|
|
|
bool checkForGLExtension(const std::string &searchName);
|
|
|
|
|
|
|
|
bool init(void);
|
|
|
|
|
2012-04-20 11:39:12 +08:00
|
|
|
private:
|
|
|
|
CCConfiguration(void);
|
|
|
|
static CCConfiguration *s_gSharedConfiguration;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
GLint m_nMaxTextureSize;
|
|
|
|
GLint m_nMaxModelviewStackDepth;
|
|
|
|
bool m_bSupportsPVRTC;
|
|
|
|
bool m_bSupportsNPOT;
|
|
|
|
bool m_bSupportsBGRA8888;
|
|
|
|
bool m_bSupportsDiscardFramebuffer;
|
2012-06-12 01:43:07 +08:00
|
|
|
bool m_bSupportsShareableVAO;
|
2012-04-20 11:39:12 +08:00
|
|
|
GLint m_nMaxSamplesAllowed;
|
|
|
|
GLint m_nMaxTextureUnits;
|
|
|
|
char * m_pGlExtensions;
|
2012-04-19 14:35:52 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif // __CCCONFIGURATION_H__
|