| 123456789101112131415161718192021222324252627 |
- // Copyright (C) 2009-2021, Panagiotis Christopoulos Charitos and contributors.
- // All rights reserved.
- // Code licensed under the BSD License.
- // http://www.anki3d.org/LICENSE
- #include <AnKi/Core/NativeWindow.h>
- namespace anki
- {
- NativeWindow::~NativeWindow
- {
- }
- void NativeWindow::create(NativeWindowInitInfo&)
- {
- }
- void NativeWindow::destroy()
- {
- }
- void NativeWindow::swapBuffers()
- {
- }
- } // end namespace anki
|