Vulkan.hpp
1 #pragma once
2 #include <QtGui/qtguiglobal.h>
3 
4 #include <score_lib_base_export.h>
5 
6 #if defined(QT_FEATURE_vulkan) && QT_CONFIG(vulkan) \
7  && __has_include(<vulkan/vulkan.h>) && !defined(_MSC_VER)
8 #define QT_HAS_VULKAN 1
9 
10 class QVulkanInstance;
11 namespace score::gfx
12 {
13 SCORE_LIB_BASE_EXPORT
14 QVulkanInstance* staticVulkanInstance();
15 }
16 #else
17 #define QT_HAS_VULKAN 0
18 #endif
Graphics rendering pipeline for ossia score.
Definition: PreviewWidget.hpp:12