yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

Ellie Hermaszewskaformatf65d756bf

master
515 B32 linesraw
1#if !defined(_WIN32) && !defined(__APPLE__) && !defined(SLANG_ENABLE_XLIB)
2
3#include "../window.h"
4
5using namespace Slang;
6
7namespace platform
8{
9
10void Application::init() {}
11
12void Application::doEvents() {}
13
14void Application::quit() {}
15
16void Application::dispose() {}
17
18void Application::run(Window* mainWindow, bool waitForEvents)
19{
20    SLANG_UNUSED(mainWindow);
21    SLANG_UNUSED(waitForEvents);
22}
23
24Window* Application::createWindow(const WindowDesc& desc)
25{
26    return nullptr;
27}
28
29
30} // namespace platform
31
32#endif