diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2022-12-14 15:33:10 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-14 15:33:10 -0500 |
| commit | a222f02c7aa88bfbae10075e6a19ce1fbe672815 (patch) | |
| tree | 67f7d5d94bfc66d71df7e60826a6c17ed54f9ef1 /src/video_core/vulkan_common/vulkan_device.h | |
| parent | a4696285af946588dc33b19e49a3baa0f8b2b60d (diff) | |
| parent | f6868ae4dd7928a251939069f9be6ff669bc391e (diff) | |
Merge pull request #6688 from yzct12345/valid-intel-max
render_vulkan: Fix validation errors on less compatible Intel GPUs
Diffstat (limited to 'src/video_core/vulkan_common/vulkan_device.h')
| -rw-r--r-- | src/video_core/vulkan_common/vulkan_device.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.h b/src/video_core/vulkan_common/vulkan_device.h index db802437c..391b7604c 100644 --- a/src/video_core/vulkan_common/vulkan_device.h +++ b/src/video_core/vulkan_common/vulkan_device.h @@ -368,6 +368,14 @@ public: return must_emulate_bgr565; } + u32 GetMaxVertexInputAttributes() const { + return max_vertex_input_attributes; + } + + u32 GetMaxVertexInputBindings() const { + return max_vertex_input_bindings; + } + private: /// Checks if the physical device is suitable. void CheckSuitability(bool requires_swapchain) const; @@ -467,6 +475,8 @@ 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. + u32 max_vertex_input_attributes{}; ///< Max vertex input attributes in pipeline + u32 max_vertex_input_bindings{}; ///< Max vertex input buffers in pipeline // Telemetry parameters std::string vendor_name; ///< Device's driver name. |
