diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-05-03 14:44:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-03 14:44:55 +0200 |
commit | 6530d46d67a1f31461b71632f0795ce355cd0ca5 (patch) | |
tree | f5ec99aa826eb47c43fdd3acb936c5c093566760 /drivers/vulkan/vulkan_context.cpp | |
parent | 931838b3308442ba5084c0a9f487b05c9de74fde (diff) | |
parent | 31194f5b1c84638267958c8efa9212f362e57ae0 (diff) |
Merge pull request #51102 from Calinou/renderingserver-add-api-version-getter
Add `get_video_adapter_api_version()` to RenderingServer
Diffstat (limited to 'drivers/vulkan/vulkan_context.cpp')
-rw-r--r-- | drivers/vulkan/vulkan_context.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/vulkan/vulkan_context.cpp b/drivers/vulkan/vulkan_context.cpp index a09a757842..7944057041 100644 --- a/drivers/vulkan/vulkan_context.cpp +++ b/drivers/vulkan/vulkan_context.cpp @@ -2364,6 +2364,7 @@ void VulkanContext::set_object_name(VkObjectType p_object_type, uint64_t p_objec String VulkanContext::get_device_vendor_name() const { return device_vendor; } + String VulkanContext::get_device_name() const { return device_name; } @@ -2372,6 +2373,10 @@ RenderingDevice::DeviceType VulkanContext::get_device_type() const { return RenderingDevice::DeviceType(device_type); } +String VulkanContext::get_device_api_version() const { + return vformat("%d.%d.%d", vulkan_major, vulkan_minor, vulkan_patch); +} + String VulkanContext::get_device_pipeline_cache_uuid() const { return pipeline_cache_id; } |