diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-01-06 00:31:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-06 00:31:55 +0100 |
commit | eaca61e07366023d2a770173b851f034f47c3719 (patch) | |
tree | c6b9a78746b16d16bbc92ed3094160c175a7260a /src/video_core/vulkan_common | |
parent | Merge pull request #9536 from liamwhite/debug-utils (diff) | |
parent | renderer_vulkan: implement fallback path for null descriptors (diff) | |
download | yuzu-eaca61e07366023d2a770173b851f034f47c3719.tar yuzu-eaca61e07366023d2a770173b851f034f47c3719.tar.gz yuzu-eaca61e07366023d2a770173b851f034f47c3719.tar.bz2 yuzu-eaca61e07366023d2a770173b851f034f47c3719.tar.lz yuzu-eaca61e07366023d2a770173b851f034f47c3719.tar.xz yuzu-eaca61e07366023d2a770173b851f034f47c3719.tar.zst yuzu-eaca61e07366023d2a770173b851f034f47c3719.zip |
Diffstat (limited to 'src/video_core/vulkan_common')
-rw-r--r-- | src/video_core/vulkan_common/vulkan_device.cpp | 3 | ||||
-rw-r--r-- | src/video_core/vulkan_common/vulkan_device.h | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp index 5c5bfa18d..8e77f5aa3 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp @@ -1487,6 +1487,9 @@ std::vector<const char*> Device::LoadExtensions(bool requires_surface) { max_push_descriptors = push_descriptor.maxPushDescriptors; } + + has_null_descriptor = true; + return extensions; } diff --git a/src/video_core/vulkan_common/vulkan_device.h b/src/video_core/vulkan_common/vulkan_device.h index 920a8f4e3..6042046e1 100644 --- a/src/video_core/vulkan_common/vulkan_device.h +++ b/src/video_core/vulkan_common/vulkan_device.h @@ -397,6 +397,10 @@ public: return must_emulate_bgr565; } + bool HasNullDescriptor() const { + return has_null_descriptor; + } + u32 GetMaxVertexInputAttributes() const { return max_vertex_input_attributes; } @@ -511,6 +515,7 @@ private: bool supports_d24_depth{}; ///< Supports D24 depth buffers. bool cant_blit_msaa{}; ///< Does not support MSAA<->MSAA blitting. bool must_emulate_bgr565{}; ///< Emulates BGR565 by swizzling RGB565 format. + bool has_null_descriptor{}; ///< Has support for null descriptors. u32 max_vertex_input_attributes{}; ///< Max vertex input attributes in pipeline u32 max_vertex_input_bindings{}; ///< Max vertex input buffers in pipeline |