rename gnPhysicalOutputDevice -> gnPhysicalDevice

This commit is contained in:
Gregory Wells
2025-08-29 13:55:29 -04:00
parent 76a787d48f
commit a709ff8808
17 changed files with 37 additions and 39 deletions

View File

@@ -16,4 +16,4 @@ typedef struct gnQueueFamilyProperties {
gnQueueTypeFlags queueTypeFlags;
} gnQueueFamilyProperties;
gnReturnCode gnGetPhysicalDeviceQueueProperties(gnPhysicalOutputDeviceHandle device, uint32_t queueCount, gnQueueFamilyProperties* queues);
gnReturnCode gnGetPhysicalDeviceQueueProperties(gnPhysicalDeviceHandle device, uint32_t queueCount, gnQueueFamilyProperties* queues);

View File

@@ -10,7 +10,7 @@ typedef struct gnPresentInfo gnPresentInfo;
typedef struct gnPresentSyncInfo gnPresentSyncInfo;
typedef struct gnQueueExtFunctions {
gnReturnCode (*_gnGetPhysicalDeviceQueueProperties)(gnPhysicalOutputDeviceHandle device, uint32_t queueCount, gnQueueFamilyProperties* queues);
gnReturnCode (*_gnGetPhysicalDeviceQueueProperties)(gnPhysicalDeviceHandle device, uint32_t queueCount, gnQueueFamilyProperties* queues);
void (*_gnGetDeviceQueue)(gnOutputDevice device, uint32_t queueFamily, uint32_t queueIndex, gnQueue* queue);
gnReturnCode (*_gnQueueSubmit)(gnOutputDevice device, gnQueue queue, gnSubmitInfo info);