get physical device properties
This commit is contained in:
@@ -73,7 +73,7 @@ gnReturnCode initBackend(gnInstance instance, gnInstanceCreateInfo* info) {
|
|||||||
|
|
||||||
instance->dispatchTable.destroyInstance = destroyBackend;
|
instance->dispatchTable.destroyInstance = destroyBackend;
|
||||||
instance->dispatchTable.enumeratePhysicalDevices = vulkanEnumeratePhysicalDevices;
|
instance->dispatchTable.enumeratePhysicalDevices = vulkanEnumeratePhysicalDevices;
|
||||||
// instance->dispatchTable.getPhysicalDeviceProperties = NULL;
|
instance->dispatchTable.getPhysicalDeviceProperties = vulkanGetPhysicalDeviceProperties;
|
||||||
// instance->dispatchTable.createDevice = NULL;
|
// instance->dispatchTable.createDevice = NULL;
|
||||||
|
|
||||||
// for (int i = 0; i < info->enabledExtensionCount; i++) {
|
// for (int i = 0; i < info->enabledExtensionCount; i++) {
|
||||||
|
|||||||
@@ -4,8 +4,20 @@
|
|||||||
#include "vulkan_helpers.h"
|
#include "vulkan_helpers.h"
|
||||||
#include "instance/gryphn_instance.h"
|
#include "instance/gryphn_instance.h"
|
||||||
#include "device/gryphn_physical_device.h"
|
#include "device/gryphn_physical_device.h"
|
||||||
|
#include <string.h>
|
||||||
#include <vulkan/vulkan_core.h>
|
#include <vulkan/vulkan_core.h>
|
||||||
|
|
||||||
|
gnPhysicalDeviceType vulkanDeviceTypeToGryphnDeviceType(VkPhysicalDeviceType type) {
|
||||||
|
switch (type) {
|
||||||
|
case VK_PHYSICAL_DEVICE_TYPE_OTHER: return GN_PHYSICAL_DEVICE_TYPE_OTHER;
|
||||||
|
case VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU: return GN_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU;
|
||||||
|
case VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU: return GN_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU;
|
||||||
|
case VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU: return GN_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU;
|
||||||
|
case VK_PHYSICAL_DEVICE_TYPE_CPU: return GN_PHYSICAL_DEVICE_TYPE_CPU;
|
||||||
|
case VK_PHYSICAL_DEVICE_TYPE_MAX_ENUM: return GN_PHYSICAL_DEVICE_TYPE_OTHER;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
gnReturnCode vulkanEnumeratePhysicalDevices(gnInstance instance, uint32_t* deviceCount, gnPhysicalDevice* devices) {
|
gnReturnCode vulkanEnumeratePhysicalDevices(gnInstance instance, uint32_t* deviceCount, gnPhysicalDevice* devices) {
|
||||||
if (devices == NULL) {
|
if (devices == NULL) {
|
||||||
vkEnumeratePhysicalDevices(instance->internalData, deviceCount, NULL);
|
vkEnumeratePhysicalDevices(instance->internalData, deviceCount, NULL);
|
||||||
@@ -29,3 +41,17 @@ gnReturnCode vulkanEnumeratePhysicalDevices(gnInstance instance, uint32_t* devic
|
|||||||
free(vulkanDevices);
|
free(vulkanDevices);
|
||||||
return GN_SUCCESS;
|
return GN_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gnReturnCode vulkanGetPhysicalDeviceProperties(gnPhysicalDevice device, gnPhysicalDeviceProperties* properties) {
|
||||||
|
VkPhysicalDeviceProperties deviceProperties;
|
||||||
|
vkGetPhysicalDeviceProperties(device->internalData, &deviceProperties);
|
||||||
|
|
||||||
|
*properties = (gnPhysicalDeviceProperties){
|
||||||
|
.apiVersion = deviceProperties.apiVersion,
|
||||||
|
.vendorID = deviceProperties.vendorID,
|
||||||
|
.deviceID = deviceProperties.deviceID,
|
||||||
|
.deviceType = vulkanDeviceTypeToGryphnDeviceType(deviceProperties.deviceType),
|
||||||
|
};
|
||||||
|
strcpy(properties->deviceName, deviceProperties.deviceName);
|
||||||
|
return GN_SUCCESS;
|
||||||
|
}
|
||||||
|
|||||||
@@ -2,5 +2,7 @@
|
|||||||
#include "stdint.h"
|
#include "stdint.h"
|
||||||
#include "gryphn_handle.h"
|
#include "gryphn_handle.h"
|
||||||
#include "gryphn_return_code.h"
|
#include "gryphn_return_code.h"
|
||||||
|
#include "device/gryphn_physical_device.h"
|
||||||
|
|
||||||
gnReturnCode vulkanEnumeratePhysicalDevices(gnInstance instance, uint32_t* deviceCount, gnPhysicalDevice* devices);
|
gnReturnCode vulkanEnumeratePhysicalDevices(gnInstance instance, uint32_t* deviceCount, gnPhysicalDevice* devices);
|
||||||
|
gnReturnCode vulkanGetPhysicalDeviceProperties(gnPhysicalDevice device, gnPhysicalDeviceProperties* properties);
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ void createInstance() {
|
|||||||
CHECK(gnGetAvaliableBackends(version, &backendCount, backends));
|
CHECK(gnGetAvaliableBackends(version, &backendCount, backends));
|
||||||
const char* extensions[2] = {
|
const char* extensions[2] = {
|
||||||
"GN_EXT_surface",
|
"GN_EXT_surface",
|
||||||
"GN_EXT_surface_cocoa"
|
"GN_EXT_surface_xlib"
|
||||||
};
|
};
|
||||||
|
|
||||||
gnInstanceCreateInfo createInfo = {
|
gnInstanceCreateInfo createInfo = {
|
||||||
@@ -55,15 +55,15 @@ void createInstance() {
|
|||||||
void createDevice() {
|
void createDevice() {
|
||||||
uint32_t physicalDeviceCount;
|
uint32_t physicalDeviceCount;
|
||||||
CHECK(gnEnumeratePhysicalDevices(instance, &physicalDeviceCount, nullptr));
|
CHECK(gnEnumeratePhysicalDevices(instance, &physicalDeviceCount, nullptr));
|
||||||
// gnPhysicalDevice* devices = (gnPhysicalDevice*)malloc(sizeof(gnPhysicalDevice) * physicalDeviceCount);
|
gnPhysicalDevice* devices = (gnPhysicalDevice*)malloc(sizeof(gnPhysicalDevice) * physicalDeviceCount);
|
||||||
// CHECK(gnEnumeratePhysicalDevices(instance, &physicalDeviceCount, devices));
|
CHECK(gnEnumeratePhysicalDevices(instance, &physicalDeviceCount, devices));
|
||||||
|
|
||||||
// std::cout << "Found " << physicalDeviceCount << " physical devices:\n";
|
std::cout << "Found " << physicalDeviceCount << " physical devices:\n";
|
||||||
// for (int i = 0; i < physicalDeviceCount; i++) {
|
for (int i = 0; i < physicalDeviceCount; i++) {
|
||||||
// gnPhysicalDeviceProperties properties;
|
gnPhysicalDeviceProperties properties;
|
||||||
// gnGetPhysicalDeviceProperties(devices[i], &properties);
|
gnGetPhysicalDeviceProperties(devices[i], &properties);
|
||||||
// std::cout << "Name: " << properties.deviceName << "\n";
|
std::cout << "Name: " << properties.deviceName << "\n";
|
||||||
// }
|
}
|
||||||
|
|
||||||
// pysicalDevice = devices[0];
|
// pysicalDevice = devices[0];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user