freedreno/drm-shim: enable raytracing

Just enable it unconditionally, the ir3 compiler info will disable it
when not supported.

Signed-off-by: Job Noorman <jnoorman@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33320>
This commit is contained in:
Job Noorman
2025-01-31 14:39:11 +01:00
committed by Marge Bot
parent 438652654b
commit 1d3b6aa8d6
+3
View File
@@ -123,6 +123,9 @@ msm_ioctl_get_param(int fd, unsigned long request, void *arg)
case MSM_PARAM_VA_SIZE:
gp->value = 0x100000000ULL;
return 0;
case MSM_PARAM_RAYTRACING:
gp->value = 1;
return 0;
default:
fprintf(stderr, "Unknown DRM_IOCTL_MSM_GET_PARAM %d\n", gp->param);
return -1;