summaryrefslogtreecommitdiff
path: root/tools/platform/placeholder/placeholder-window.cpp
diff options
context:
space:
mode:
authorEllie Hermaszewska <ellieh@nvidia.com>2024-10-29 14:49:26 +0800
committerGitHub <noreply@github.com>2024-10-29 14:49:26 +0800
commitf65d756bff8d4c5cbc15bd0322a2ae8e6b896a21 (patch)
treeea1d61342cd29368e19135000ec2948813096205 /tools/platform/placeholder/placeholder-window.cpp
parenta729c15e9dce9f5116a38afc66329ab2ca4cea54 (diff)
format
* format * Minor test fixes * enable checking cpp format in ci
Diffstat (limited to 'tools/platform/placeholder/placeholder-window.cpp')
-rw-r--r--tools/platform/placeholder/placeholder-window.cpp17
1 files changed, 8 insertions, 9 deletions
diff --git a/tools/platform/placeholder/placeholder-window.cpp b/tools/platform/placeholder/placeholder-window.cpp
index ae4f413f8..43494d898 100644
--- a/tools/platform/placeholder/placeholder-window.cpp
+++ b/tools/platform/placeholder/placeholder-window.cpp
@@ -7,17 +7,13 @@ using namespace Slang;
namespace platform
{
-void Application::init()
-{
-}
+void Application::init() {}
-void Application::doEvents() { }
+void Application::doEvents() {}
-void Application::quit() { }
+void Application::quit() {}
-void Application::dispose()
-{
-}
+void Application::dispose() {}
void Application::run(Window* mainWindow, bool waitForEvents)
{
@@ -25,7 +21,10 @@ void Application::run(Window* mainWindow, bool waitForEvents)
SLANG_UNUSED(waitForEvents);
}
-Window* Application::createWindow(const WindowDesc& desc) { return nullptr; }
+Window* Application::createWindow(const WindowDesc& desc)
+{
+ return nullptr;
+}
} // namespace platform