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