venus: stub out renderer sync_fd fencing features

With syncFdFencing feature, venus starts forwarding renderer sync_fd
fencing support. The driver side now can track the renderer sync_fd
fencing features. This change adds the initial stubs.

Signed-off-by: Yiwei Zhang <zzyiwei@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17975>
This commit is contained in:
Yiwei Zhang
2022-08-12 05:55:34 +00:00
committed by Marge Bot
parent 1498b0877b
commit 64f9fbb9ea
3 changed files with 18 additions and 7 deletions
+4 -2
View File
@@ -224,10 +224,12 @@ vn_instance_init_experimental_features(struct vn_instance *instance)
"VkVenusExperimentalFeatures100000MESA is as below:"
"\n\tmemoryResourceAllocationSize = %u"
"\n\tglobalFencing = %u"
"\n\tlargeRing = %u",
"\n\tlargeRing = %u"
"\n\tsyncFdFencing = %u",
instance->experimental.memoryResourceAllocationSize,
instance->experimental.globalFencing,
instance->experimental.largeRing);
instance->experimental.largeRing,
instance->experimental.syncFdFencing);
}
return VK_SUCCESS;