Module: Mesa Branch: main Commit: 44e652af9af7b3136011c9f3ad537782b604c004 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=44e652af9af7b3136011c9f3ad537782b604c004
Author: Karol Herbst <[email protected]> Date: Tue Jul 11 17:53:49 2023 +0200 rusticl/mesa: make svm_migrate optional It's just a hint and drivers might want to ignore implementing it for now. Signed-off-by: Karol Herbst <[email protected]> Reviewed-by: Dave Airlie <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24092> --- src/gallium/frontends/rusticl/mesa/pipe/context.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gallium/frontends/rusticl/mesa/pipe/context.rs b/src/gallium/frontends/rusticl/mesa/pipe/context.rs index c3ddf7653af..22a4834bb69 100644 --- a/src/gallium/frontends/rusticl/mesa/pipe/context.rs +++ b/src/gallium/frontends/rusticl/mesa/pipe/context.rs @@ -572,8 +572,6 @@ impl PipeContext { to_device, content_undefined, ); - } else { - panic!("svm_migrate not implemented but called!"); } } }
