-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathvk_initlib.cpp
115 lines (90 loc) · 2.84 KB
/
vk_initlib.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
* Copyright (c) 2014-2021, NVIDIA CORPORATION. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-FileCopyrightText: Copyright (c) 2014-2021 NVIDIA CORPORATION
* SPDX-License-Identifier: Apache-2.0
*/
#include <assert.h>
#include <string.h>
#include <vector>
#include <vulkan/vulkan_core.h>
#if HAS_OPENGL
#include <nvgl/extensions_gl.hpp>
#include <nvgl/contextwindow_gl.hpp>
#endif
bool vulkanInitLibrary()
{
#if HAS_OPENGL
if (!load_GL_NV_draw_vulkan_image(nvgl::ContextWindow::sysGetProcAddress)) return false;
#endif
#if NVP_SUPPORTS_VULKANSDK
return true;
#else
if (__nvkglGetVkProcAddrNV){
vkLoadProcs( __nvkglGetVkProcAddrNV );
}
if (pfn_vkCreateDevice != NULL)
return true;
return false;
#endif
}
// non optimal brute force way
bool vulkanIsExtensionSupported(uint32_t deviceIdx, const char* name)
{
VkResult result;
VkInstance instance;
VkInstanceCreateInfo instanceCreateInfo = { VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO };
result = vkCreateInstance(&instanceCreateInfo, NULL, &instance);
if (result != VK_SUCCESS) {
return false;
}
uint32_t physicalDeviceCount = 0;
result = vkEnumeratePhysicalDevices(instance, &physicalDeviceCount, NULL);
if (result != VK_SUCCESS || physicalDeviceCount == 0) {
return false;
}
std::vector<VkPhysicalDevice> physicalDevices(physicalDeviceCount);
result = vkEnumeratePhysicalDevices(instance, &physicalDeviceCount, physicalDevices.data());
if (result != VK_SUCCESS) {
vkDestroyInstance(instance, NULL);
return false;
}
if (deviceIdx >= physicalDeviceCount) {
return false;
}
// pick first device
VkPhysicalDevice physicalDevice = physicalDevices[deviceIdx];
uint32_t count = 0;
result = vkEnumerateDeviceExtensionProperties(physicalDevice, NULL, &count, NULL);
if (result != VK_SUCCESS) {
vkDestroyInstance(instance, NULL);
return false;
}
std::vector<VkExtensionProperties> extensions(count);
result = vkEnumerateDeviceExtensionProperties(physicalDevice, NULL, &count, extensions.data());
if (result != VK_SUCCESS) {
vkDestroyInstance(instance, NULL);
return false;
}
bool found = false;
for (uint32_t i = 0; i < count; i++){
if (strcmp(extensions[i].extensionName, name) == 0){
found = true;
break;
}
}
vkDestroyInstance(instance, NULL);
return found;
}