Files
Webcam/include/engine/gpu/gpu_caps.h
2026-06-22 11:49:35 +02:00

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__