1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/framework/graphics/presentparams.hpp

17 lines
461 B
C++

#ifndef XNA_GRAPHICS_PRESENTPARAMS_HPP
#define XNA_GRAPHICS_PRESENTPARAMS_HPP
#include "../default.hpp"
namespace xna {
class IPresentationParameters {
virtual Uint BackBufferWidth() const = 0;
virtual Uint BackBufferHeight() const = 0;
virtual SurfaceFormat BackBufferFormat() const = 0;
virtual SwapEffect PresentationSwapEffect() const = 0;
virtual intptr_t DeviceWindowHandle() const = 0;
virtual bool IsFullScreen() const = 0;
};
}
#endif