Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/modules/dnn/src/vkcom/vulkan/vk_loader.hpp
16350 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
#ifndef OPENCV_DNN_VKCOM_VULKAN_VK_LOADER_HPP
9
#define OPENCV_DNN_VKCOM_VULKAN_VK_LOADER_HPP
10
11
namespace cv { namespace dnn { namespace vkcom {
12
13
#ifdef HAVE_VULKAN
14
bool loadVulkanLibrary();
15
bool loadVulkanEntry();
16
bool loadVulkanGlobalFunctions();
17
bool loadVulkanFunctions(VkInstance& instance);
18
#endif // HAVE_VULKAN
19
20
}}} // namespace cv::dnn::vkcom
21
#endif // OPENCV_DNN_VKCOM_VULKAN_VK_LOADER_HPP
22
23