41 lines
551 B
C++
41 lines
551 B
C++
/* -----------------------------------------------------------------------------
|
|
GSFramework
|
|
Copyright 2001-2013 Emmanuel Julien. All Rights Reserved.
|
|
----------------------------------------------------------------------------- */
|
|
|
|
|
|
#ifndef __GPUCAPS__
|
|
#define __GPUCAPS__
|
|
|
|
|
|
namespace GS {
|
|
namespace GPU {
|
|
|
|
enum Caps
|
|
{
|
|
/*!
|
|
@name Hardware caps.
|
|
@{
|
|
*/
|
|
MaxTextureSize,
|
|
MaxTextureUnit,
|
|
|
|
CanBlitRBO,
|
|
TextureTopLeftOrigin,
|
|
|
|
MaxAnisotropy,
|
|
/*!
|
|
@}
|
|
@name Performance hints.
|
|
@{
|
|
*/
|
|
CheapLights
|
|
/// @}
|
|
};
|
|
|
|
} // GPU
|
|
} // GS
|
|
|
|
|
|
#endif // __GPUCAPS__
|