v3d/drm-shim: add support for multisync

This is needed for Vulkan and makes vulkaninfo succeed using drm-shim.

Signed-off-by: Job Noorman <jnoorman@igalia.com>
Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36509>
This commit is contained in:
Job Noorman 2025-08-04 08:06:36 +02:00
parent 8fe0a3474d
commit 0264e60570

View file

@ -131,6 +131,9 @@ v3d_ioctl_get_param(int fd, unsigned long request, void *arg)
case DRM_V3D_PARAM_SUPPORTS_PERFMON:
gp->value = 1;
return 0;
case DRM_V3D_PARAM_SUPPORTS_MULTISYNC_EXT:
gp->value = 1;
return 0;
default:
break;
}