summaryrefslogtreecommitdiffstats
path: root/examples/vulkan/hellovulkantexture/main.cpp
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@qt.io>2023-03-22 15:55:24 +0100
committerLaszlo Agocs <laszlo.agocs@qt.io>2023-03-22 23:17:48 +0100
commitb5b954fac12414c315369344b1664bf220a59dad (patch)
tree5669e86bbc3a84488c69b84158f35569706278a1 /examples/vulkan/hellovulkantexture/main.cpp
parent580fc133a6149fb06ac8b0a4a53a955f9f21fa5f (diff)
Move hellovulkantexture example to manual test
Because it is the least documented one, and compared to the other Vulkan examples it does not add anything new, it just dives deeper into Vulkan. Pick-to: 6.5 Change-Id: Iecf3e04625fba256ea8134da57f54498ee2010db Reviewed-by: Christian Strømme <christian.stromme@qt.io>
Diffstat (limited to 'examples/vulkan/hellovulkantexture/main.cpp')
-rw-r--r--examples/vulkan/hellovulkantexture/main.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/examples/vulkan/hellovulkantexture/main.cpp b/examples/vulkan/hellovulkantexture/main.cpp
deleted file mode 100644
index 59a3273303..0000000000
--- a/examples/vulkan/hellovulkantexture/main.cpp
+++ /dev/null
@@ -1,32 +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 "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();
-}