diff options
| author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-28 14:51:49 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-28 14:51:49 -0400 |
| commit | ec68cba44032c4ea1ef3d1de4aecaefc693f4a12 (patch) | |
| tree | 48fcef18920efbfedd88fe7d79cd7bbbbcce56d8 /src/video_core/vulkan_common/vulkan_device.h | |
| parent | c5e25cffb9f561394a6b30c1b30a327404fa1545 (diff) | |
| parent | a01459df3d48e6d4b5d8e7205a8e56b855d0606e (diff) | |
Merge pull request #6502 from ameerj/vendor-title
main: Add GPU Vendor name to running title bar
Diffstat (limited to 'src/video_core/vulkan_common/vulkan_device.h')
| -rw-r--r-- | src/video_core/vulkan_common/vulkan_device.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.h b/src/video_core/vulkan_common/vulkan_device.h index 88b298196..96c0f8c60 100644 --- a/src/video_core/vulkan_common/vulkan_device.h +++ b/src/video_core/vulkan_common/vulkan_device.h @@ -45,6 +45,9 @@ public: /// Reports a shader to Nsight Aftermath. void SaveShader(const std::vector<u32>& spirv) const; + /// Returns the name of the VkDriverId reported from Vulkan. + std::string GetDriverName() const; + /// Returns the dispatch loader with direct function pointers of the device. const vk::DeviceDispatch& GetDispatchLoader() const { return dld; |
