blob: ae4f413f841ff8c34de89b0b90d0ed427e8ac40c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#if !defined(_WIN32) && !defined(__APPLE__) && !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
|