BsVulkanVideoModeInfo.cpp 676 B

1234567891011121314151617181920212223242526
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #include "Win32/BsWin32VideoModeInfo.h"
  4. #include "BsException.h"
  5. namespace BansheeEngine
  6. {
  7. Win32VideoModeInfo::Win32VideoModeInfo()
  8. {
  9. }
  10. Win32VideoOutputInfo::Win32VideoOutputInfo( UINT32 outputIdx)
  11. {
  12. }
  13. Win32VideoOutputInfo::~Win32VideoOutputInfo()
  14. {
  15. }
  16. Win32VideoMode::Win32VideoMode(UINT32 width, UINT32 height, float refreshRate, UINT32 outputIdx)
  17. :VideoMode(width, height, refreshRate, outputIdx)
  18. { }
  19. }