Path: blob/master/modules/dnn/src/vkcom/vulkan/vk_functions.cpp
16344 views
// This file is part of OpenCV project.1// It is subject to the license terms in the LICENSE file found in the top-level directory2// of this distribution and at http://opencv.org/license.html.3//4// Copyright (C) 2018, Intel Corporation, all rights reserved.5// Third party copyrights are property of their respective owners.67#include "../../precomp.hpp"8#ifdef HAVE_VULKAN9#include <vulkan/vulkan.h>1011#define VK_ENTRY(func) PFN_##func func = nullptr;12#define VK_GLOBAL_LEVEL_FUNC(func) PFN_##func func = nullptr;13#define VK_GLOBAL_LEVEL_FUNC_MANDATORY(func) PFN_##func func = nullptr;14#define VK_FUNC(func) PFN_##func func = nullptr;15#define VK_FUNC_MANDATORY(func) PFN_##func func = nullptr;1617namespace cv { namespace dnn { namespace vkcom {1819#include "function_list.inl"2021}}} // namespace cv::dnn::vkcom22#endif // HAVE_VULKAN232425