blob: 43494d898e193ca01f4e37d79d733dd9571c2b93 (
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
|
#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
|