diff options
Diffstat (limited to 'tools/platform/placeholder')
| -rw-r--r-- | tools/platform/placeholder/placeholder-window.cpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tools/platform/placeholder/placeholder-window.cpp b/tools/platform/placeholder/placeholder-window.cpp new file mode 100644 index 000000000..a94287d55 --- /dev/null +++ b/tools/platform/placeholder/placeholder-window.cpp @@ -0,0 +1,33 @@ +#if !defined(_WIN32) && !defined(SLANG_ENABLE_XLIB) + +#include "../window.h" + +using namespace Slang; + +namespace platform +{ + +void Application::init() +{ +} + +void Application::doEvents() { } + +void Application::quit() { } + +void Application::dispose() +{ +} + +void Application::run(Window* mainWindow, bool waitForEvents) +{ + SLANG_UNUSED(mainWindow); + SLANG_UNUSED(waitForEvents); +} + +Window* Application::createWindow(const WindowDesc& desc) { return nullptr; } + + +} // namespace platform + +#endif |
