2024-03-30 14:25:08 -03:00
|
|
|
#ifndef XNA_GAME_GDEVICEINFO_HPP
|
|
|
|
#define XNA_GAME_GDEVICEINFO_HPP
|
|
|
|
|
2024-05-24 12:31:24 -03:00
|
|
|
#include "../default.hpp"
|
2024-03-30 14:25:08 -03:00
|
|
|
|
|
|
|
namespace xna {
|
2024-07-30 14:21:35 -03:00
|
|
|
struct GraphicsDeviceInformation {
|
|
|
|
GraphicsDeviceInformation() {
|
|
|
|
PresentParameters = snew<PresentationParameters>();
|
|
|
|
}
|
|
|
|
|
2024-05-24 12:31:24 -03:00
|
|
|
sptr<GraphicsAdapter> Adapter = nullptr;
|
|
|
|
xna::GraphicsProfile Profile{ xna::GraphicsProfile::Reach };
|
2024-07-30 10:43:39 -03:00
|
|
|
sptr<xna::PresentationParameters> PresentParameters = nullptr;
|
|
|
|
sptr<GameWindow> Window = nullptr;
|
2024-07-30 14:21:35 -03:00
|
|
|
};
|
2024-03-30 14:25:08 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|