Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/modules/dnn/src/vkcom/vulkan/vk_functions.cpp
16344 views
1
// This file is part of OpenCV project.
2
// It is subject to the license terms in the LICENSE file found in the top-level directory
3
// of this distribution and at http://opencv.org/license.html.
4
//
5
// Copyright (C) 2018, Intel Corporation, all rights reserved.
6
// Third party copyrights are property of their respective owners.
7
8
#include "../../precomp.hpp"
9
#ifdef HAVE_VULKAN
10
#include <vulkan/vulkan.h>
11
12
#define VK_ENTRY(func) PFN_##func func = nullptr;
13
#define VK_GLOBAL_LEVEL_FUNC(func) PFN_##func func = nullptr;
14
#define VK_GLOBAL_LEVEL_FUNC_MANDATORY(func) PFN_##func func = nullptr;
15
#define VK_FUNC(func) PFN_##func func = nullptr;
16
#define VK_FUNC_MANDATORY(func) PFN_##func func = nullptr;
17
18
namespace cv { namespace dnn { namespace vkcom {
19
20
#include "function_list.inl"
21
22
}}} // namespace cv::dnn::vkcom
23
#endif // HAVE_VULKAN
24
25