2013-07-12 21:30:13 +02:00
|
|
|
/*****************************************************************************
|
2013-08-13 20:04:25 +02:00
|
|
|
* GraphicsDeviceInformation.h *
|
2013-07-12 21:30:13 +02:00
|
|
|
* *
|
2013-08-13 20:04:25 +02:00
|
|
|
* XFX GraphicsDeviceInformation class definition file *
|
2013-07-12 21:30:13 +02:00
|
|
|
* Copyright (c) XFX Team. All Rights Reserved *
|
|
|
|
*****************************************************************************/
|
2013-08-13 20:04:25 +02:00
|
|
|
#ifndef _XFX_GRAPHICSDEVICEINFORMATION_
|
|
|
|
#define _XFX_GRAPHICSDEVICEINFORMATION_
|
2013-05-05 18:18:41 +02:00
|
|
|
|
|
|
|
#include <Graphics/Enums.h>
|
|
|
|
#include <Graphics/PresentationParameters.h>
|
|
|
|
|
|
|
|
using namespace System;
|
|
|
|
using namespace XFX::Graphics;
|
|
|
|
|
|
|
|
namespace XFX
|
|
|
|
{
|
2013-07-12 21:30:13 +02:00
|
|
|
/**
|
|
|
|
* Holds the settings for creating a graphics device.
|
|
|
|
*/
|
2013-05-05 18:18:41 +02:00
|
|
|
class GraphicsDeviceInformation : public Object
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GraphicsAdapter Adapter;
|
|
|
|
XFX::Graphics::PresentationParameters PresentationParameters;
|
|
|
|
|
|
|
|
GraphicsDeviceInformation();
|
|
|
|
|
|
|
|
GraphicsDeviceInformation Clone() const;
|
2013-05-31 15:58:00 +02:00
|
|
|
bool Equals(Object const * const obj) const;
|
2013-07-12 21:30:13 +02:00
|
|
|
static const Type& GetType();
|
2013-05-05 18:18:41 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-08-13 20:04:25 +02:00
|
|
|
#endif //_XFX_GRAPHICSDEVICEINFORMATION_
|