mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-03 15:28:15 +02:00
broadcom/simulator: V3D is always 4.2 or above
This is a leftover from when we were supporting V3D 4.1 or below. Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com> Reviewed-by: Iago Toral Quiroga <itoral@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41779>
This commit is contained in:
parent
ddd12f2f3e
commit
6f8a692abc
1 changed files with 2 additions and 2 deletions
|
|
@ -272,13 +272,13 @@ v3dX(simulator_get_param_ioctl)(struct v3d_hw *v3d,
|
|||
args->value = 1;
|
||||
return 0;
|
||||
case DRM_V3D_PARAM_SUPPORTS_CSD:
|
||||
args->value = V3D_VERSION >= 42;
|
||||
args->value = 1;
|
||||
return 0;
|
||||
case DRM_V3D_PARAM_SUPPORTS_CACHE_FLUSH:
|
||||
args->value = 1;
|
||||
return 0;
|
||||
case DRM_V3D_PARAM_SUPPORTS_PERFMON:
|
||||
args->value = V3D_VERSION >= 42;
|
||||
args->value = 1;
|
||||
return 0;
|
||||
case DRM_V3D_PARAM_SUPPORTS_MULTISYNC_EXT:
|
||||
args->value = 1;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue