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
114
115
116
117
118
|
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2015-2016 The Khronos Group Inc.
// Copyright (c) 2015-2016 Valve Corporation
// Copyright (c) 2015-2016 LunarG, Inc.
// Copyright (c) 2015-2016 Google, Inc.
//
// 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.
///////////////////////////////////////////////////////////////////////////////
#define VK_PROTOTYPES
#include "vkjson.h"
#include <utility>
VkJsonDevice VkJsonGetDevice(VkPhysicalDevice physical_device) {
VkJsonDevice device;
vkGetPhysicalDeviceProperties(physical_device, &device.properties);
vkGetPhysicalDeviceFeatures(physical_device, &device.features);
vkGetPhysicalDeviceMemoryProperties(physical_device, &device.memory);
uint32_t queue_family_count = 0;
vkGetPhysicalDeviceQueueFamilyProperties(physical_device, &queue_family_count,
nullptr);
if (queue_family_count > 0) {
device.queues.resize(queue_family_count);
vkGetPhysicalDeviceQueueFamilyProperties(
physical_device, &queue_family_count, device.queues.data());
}
// Only device extensions.
// TODO(piman): do we want to show layer extensions?
uint32_t extension_count = 0;
vkEnumerateDeviceExtensionProperties(physical_device, nullptr,
&extension_count, nullptr);
if (extension_count > 0) {
device.extensions.resize(extension_count);
vkEnumerateDeviceExtensionProperties(
physical_device, nullptr, &extension_count, device.extensions.data());
}
uint32_t layer_count = 0;
vkEnumerateDeviceLayerProperties(physical_device, &layer_count, nullptr);
if (layer_count > 0) {
device.layers.resize(layer_count);
vkEnumerateDeviceLayerProperties(physical_device, &layer_count,
device.layers.data());
}
VkFormatProperties format_properties = {};
for (VkFormat format = VK_FORMAT_R4G4_UNORM_PACK8;
format <= VK_FORMAT_END_RANGE;
format = static_cast<VkFormat>(format + 1)) {
vkGetPhysicalDeviceFormatProperties(physical_device, format,
&format_properties);
if (format_properties.linearTilingFeatures ||
format_properties.optimalTilingFeatures ||
format_properties.bufferFeatures) {
device.formats.insert(std::make_pair(format, format_properties));
}
}
return device;
}
VkJsonInstance VkJsonGetInstance() {
VkJsonInstance instance;
uint32_t count;
const VkApplicationInfo app_info = {VK_STRUCTURE_TYPE_APPLICATION_INFO,
nullptr,
"vkjson_info",
1,
"",
0,
VK_API_VERSION_1_0};
VkInstanceCreateInfo instance_info = {VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO,
nullptr,
0,
&app_info,
0,
nullptr,
0,
nullptr};
VkInstance vkinstance;
VkResult result = vkCreateInstance(&instance_info, nullptr, &vkinstance);
if (result != VK_SUCCESS)
return VkJsonInstance();
count = 0;
result = vkEnumeratePhysicalDevices(vkinstance, &count, nullptr);
if (result != VK_SUCCESS) {
vkDestroyInstance(vkinstance, nullptr);
return VkJsonInstance();
}
std::vector<VkPhysicalDevice> devices(count, VK_NULL_HANDLE);
result = vkEnumeratePhysicalDevices(vkinstance, &count, devices.data());
if (result != VK_SUCCESS) {
vkDestroyInstance(vkinstance, nullptr);
return VkJsonInstance();
}
instance.devices.reserve(devices.size());
for (auto device : devices)
instance.devices.emplace_back(VkJsonGetDevice(device));
vkDestroyInstance(vkinstance, nullptr);
return instance;
}
|