BsWin32VideoModeInfo.h 916 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #pragma once
  4. #include "BsVulkanPrerequisites.h"
  5. #include "BsVideoModeInfo.h"
  6. namespace BansheeEngine
  7. {
  8. /** @addtogroup Vulkan
  9. * @{
  10. */
  11. /** @copydoc VideoMode */
  12. class Win32VideoMode : public VideoMode
  13. {
  14. public:
  15. Win32VideoMode(UINT32 width, UINT32 height, float refreshRate, UINT32 outputIdx);
  16. private:
  17. friend class VulkanVideoOutputInfo;
  18. };
  19. /** @copydoc VideoOutputInfo */
  20. class Win32VideoOutputInfo : public VideoOutputInfo
  21. {
  22. public:
  23. Win32VideoOutputInfo(UINT32 outputIdx);
  24. ~Win32VideoOutputInfo();
  25. };
  26. /** @copydoc VideoModeInfo */
  27. class Win32VideoModeInfo : public VideoModeInfo
  28. {
  29. public:
  30. Win32VideoModeInfo();
  31. };
  32. /** @} */
  33. }