Path: blob/master/modules/dnn/src/vkcom/vulkan/vk_loader.hpp
16350 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#ifndef OPENCV_DNN_VKCOM_VULKAN_VK_LOADER_HPP8#define OPENCV_DNN_VKCOM_VULKAN_VK_LOADER_HPP910namespace cv { namespace dnn { namespace vkcom {1112#ifdef HAVE_VULKAN13bool loadVulkanLibrary();14bool loadVulkanEntry();15bool loadVulkanGlobalFunctions();16bool loadVulkanFunctions(VkInstance& instance);17#endif // HAVE_VULKAN1819}}} // namespace cv::dnn::vkcom20#endif // OPENCV_DNN_VKCOM_VULKAN_VK_LOADER_HPP212223