summaryrefslogtreecommitdiffstats
path: root/src/video_core/vulkan_common/vulkan_device.h
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-07-03 07:49:59 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:40 +0200
commit7277d7fe96d53ae2b73491d91e0a54caf0206fe7 (patch)
tree3b750375adb79f5bc7bf19ab2fe771c5627b43cf /src/video_core/vulkan_common/vulkan_device.h
parentdual_vertex_pass: Clang format (diff)
downloadyuzu-7277d7fe96d53ae2b73491d91e0a54caf0206fe7.tar
yuzu-7277d7fe96d53ae2b73491d91e0a54caf0206fe7.tar.gz
yuzu-7277d7fe96d53ae2b73491d91e0a54caf0206fe7.tar.bz2
yuzu-7277d7fe96d53ae2b73491d91e0a54caf0206fe7.tar.lz
yuzu-7277d7fe96d53ae2b73491d91e0a54caf0206fe7.tar.xz
yuzu-7277d7fe96d53ae2b73491d91e0a54caf0206fe7.tar.zst
yuzu-7277d7fe96d53ae2b73491d91e0a54caf0206fe7.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/vulkan_common/vulkan_device.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.h b/src/video_core/vulkan_common/vulkan_device.h
index 26100166f..df394e384 100644
--- a/src/video_core/vulkan_common/vulkan_device.h
+++ b/src/video_core/vulkan_common/vulkan_device.h
@@ -301,7 +301,7 @@ public:
/// Returns the list of available extensions.
const std::vector<std::string>& GetAvailableExtensions() const {
- return reported_extensions;
+ return supported_extensions;
}
u64 GetDeviceLocalMemory() const {
@@ -398,8 +398,8 @@ private:
bool has_nsight_graphics{}; ///< Has Nsight Graphics attached
// Telemetry parameters
- std::string vendor_name; ///< Device's driver name.
- std::vector<std::string> reported_extensions; ///< Reported Vulkan extensions.
+ std::string vendor_name; ///< Device's driver name.
+ std::vector<std::string> supported_extensions; ///< Reported Vulkan extensions.
/// Format properties dictionary.
std::unordered_map<VkFormat, VkFormatProperties> format_properties;