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-05-24 12:31:24 -03:00
|
|
|
class GraphicsDeviceInformation {
|
2024-03-30 14:25:08 -03:00
|
|
|
public:
|
2024-05-24 12:31:24 -03:00
|
|
|
sptr<GraphicsAdapter> Adapter = nullptr;
|
|
|
|
xna::GraphicsProfile Profile{ xna::GraphicsProfile::Reach };
|
|
|
|
sptr<xna::PresentationParameters> Parameters = nullptr;
|
|
|
|
sptr<GameWindow> Window = nullptr;
|
2024-03-30 14:25:08 -03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|