summaryrefslogtreecommitdiffstats
path: root/src/video_core/vulkan_common/vulkan_device.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-06-10 17:40:58 +0200
committerLiam <byteslice@airmail.cc>2023-06-10 18:30:39 +0200
commit2bb7ea436dc74f812a8092201dc597ed58ff3c7a (patch)
tree27b6426a646112e163ae39b733ce60ca6d6aa748 /src/video_core/vulkan_common/vulkan_device.h
parentMerge pull request #10685 from liamwhite/serialization-is-hard (diff)
downloadyuzu-2bb7ea436dc74f812a8092201dc597ed58ff3c7a.tar
yuzu-2bb7ea436dc74f812a8092201dc597ed58ff3c7a.tar.gz
yuzu-2bb7ea436dc74f812a8092201dc597ed58ff3c7a.tar.bz2
yuzu-2bb7ea436dc74f812a8092201dc597ed58ff3c7a.tar.lz
yuzu-2bb7ea436dc74f812a8092201dc597ed58ff3c7a.tar.xz
yuzu-2bb7ea436dc74f812a8092201dc597ed58ff3c7a.tar.zst
yuzu-2bb7ea436dc74f812a8092201dc597ed58ff3c7a.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/vulkan_common/vulkan_device.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.h b/src/video_core/vulkan_common/vulkan_device.h
index d62a103a1..ccce9429a 100644
--- a/src/video_core/vulkan_common/vulkan_device.h
+++ b/src/video_core/vulkan_common/vulkan_device.h
@@ -580,6 +580,10 @@ public:
return properties.properties.limits.maxVertexInputBindings;
}
+ bool SupportsConditionalBarriers() const {
+ return supports_conditional_barriers;
+ }
+
private:
/// Checks if the physical device is suitable and configures the object state
/// with all necessary info about its properties.
@@ -683,6 +687,7 @@ private:
bool must_emulate_bgr565{}; ///< Emulates BGR565 by swizzling RGB565 format.
bool dynamic_state3_blending{}; ///< Has all blending features of dynamic_state3.
bool dynamic_state3_enables{}; ///< Has all enables features of dynamic_state3.
+ bool supports_conditional_barriers{}; ///< Allows barriers in conditional control flow.
u64 device_access_memory{}; ///< Total size of device local memory in bytes.
u32 sets_per_pool{}; ///< Sets per Description Pool