NativeWindowDummy.cpp 416 B

123456789101112131415161718192021222324252627
  1. // Copyright (C) 2009-2021, Panagiotis Christopoulos Charitos and contributors.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #include <AnKi/Core/NativeWindow.h>
  6. namespace anki
  7. {
  8. NativeWindow::~NativeWindow
  9. {
  10. }
  11. void NativeWindow::create(NativeWindowInitInfo&)
  12. {
  13. }
  14. void NativeWindow::destroy()
  15. {
  16. }
  17. void NativeWindow::swapBuffers()
  18. {
  19. }
  20. } // end namespace anki