rusticl/util: drop uneccesary Arc in event_list_from_cl

Acked-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36780>
This commit is contained in:
Karol Herbst
2025-07-07 00:16:36 +02:00
committed by Marge Bot
parent 495a46bf49
commit ad0402fc57
+1 -1
View File
@@ -461,7 +461,7 @@ pub fn check_cl_bool<T: PartialEq + TryInto<cl_uint>>(val: T) -> Option<bool> {
}
pub fn event_list_from_cl(
q: &Arc<Queue>,
q: &Queue,
num_events_in_wait_list: cl_uint,
event_wait_list: *const cl_event,
) -> CLResult<Vec<Arc<Event>>> {