/******************************************************** * PresentationParameters.h * * * * XFX PresentationParameters definition file * * Copyright © XFX Team. All Rights Reserved * ********************************************************/ #ifndef _XFX_GRAPHICS_PRESENTATIONPARAMETERS_ #define _XFX_GRAPHICS_PRESENTATIONPARAMETERS_ #include #include "Enums.h" using namespace System; namespace XFX { struct Rectangle; namespace Graphics { // Contains presentation parameters. class PresentationParameters : public Object { public: SurfaceFormat_t BackBufferFormat; int BackBufferHeight; int BackBufferWidth; Rectangle getBounds() const; DepthFormat_t DepthStencilFormat; bool IsFullScreen; int MultiSampleCount; PresentInterval_t PresentationInterval; RenderTargetUsage_t RenderTargetUsage; PresentationParameters(); PresentationParameters* Clone() const; bool Equals(const Object* obj) const; bool Equals(const PresentationParameters other) const; int GetType() const; bool operator!=(const PresentationParameters& other) const; bool operator==(const PresentationParameters& other) const; }; } } #endif //_XFX_GRAPHICS_PRESENTATIONPARAMETERS_