2010-12-04 16:14:34 +00:00
|
|
|
|
/********************************************************
|
|
|
|
|
* GraphicsDeviceInformation.h *
|
|
|
|
|
* *
|
|
|
|
|
* XFX GraphicsDeviceInformation definition file *
|
|
|
|
|
* Copyright <EFBFBD> XFX Team. All Rights Reserved *
|
|
|
|
|
********************************************************/
|
|
|
|
|
#ifndef _GRAPHICSDEVICEINFORMATION_
|
|
|
|
|
#define _GRAPHICSDEVICEINFORMATION_
|
|
|
|
|
|
|
|
|
|
#include <Graphics/Enums.h>
|
|
|
|
|
#include <Graphics/PresentationParameters.h>
|
|
|
|
|
|
2012-09-28 20:36:02 +00:00
|
|
|
|
using namespace System;
|
2010-12-04 16:14:34 +00:00
|
|
|
|
using namespace XFX::Graphics;
|
|
|
|
|
|
|
|
|
|
namespace XFX
|
|
|
|
|
{
|
2012-03-29 22:02:43 +00:00
|
|
|
|
// Holds the settings for creating a graphics device.
|
2012-09-28 20:36:02 +00:00
|
|
|
|
class GraphicsDeviceInformation : public Object
|
2010-12-04 16:14:34 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
GraphicsAdapter Adapter;
|
2012-09-28 20:36:02 +00:00
|
|
|
|
XFX::Graphics::PresentationParameters PresentationParameters;
|
|
|
|
|
|
|
|
|
|
GraphicsDeviceInformation();
|
2010-12-04 16:14:34 +00:00
|
|
|
|
|
2012-09-28 20:36:02 +00:00
|
|
|
|
GraphicsDeviceInformation Clone() const;
|
|
|
|
|
bool Equals(const Object* obj) const;
|
|
|
|
|
int GetType() const;
|
2010-12-04 16:14:34 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif //_GRAPHICSDEVICEINFORMATION_
|