summaryrefslogtreecommitdiffstats
path: root/examples/vulkan/hellovulkanwindow/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/vulkan/hellovulkanwindow/main.cpp')
-rw-r--r--examples/vulkan/hellovulkanwindow/main.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/examples/vulkan/hellovulkanwindow/main.cpp b/examples/vulkan/hellovulkanwindow/main.cpp
deleted file mode 100644
index 46393b1cdb..0000000000
--- a/examples/vulkan/hellovulkanwindow/main.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright (C) 2017 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#include <QGuiApplication>
-#include <QVulkanInstance>
-#include <QLoggingCategory>
-#include "hellovulkanwindow.h"
-
-Q_LOGGING_CATEGORY(lcVk, "qt.vulkan")
-
-int main(int argc, char *argv[])
-{
- QGuiApplication app(argc, argv);
-
- QLoggingCategory::setFilterRules(QStringLiteral("qt.vulkan=true"));
-
-//! [0]
- QVulkanInstance inst;
- inst.setLayers({ "VK_LAYER_KHRONOS_validation" });
- if (!inst.create())
- qFatal("Failed to create Vulkan instance: %d", inst.errorCode());
-//! [0]
-
-//! [1]
- VulkanWindow w;
- w.setVulkanInstance(&inst);
-
- w.resize(1024, 768);
- w.show();
-//! [1]
-
- return app.exec();
-}