Module: Mesa Branch: master Commit: b655be7252040c55e27b60508e8f305618a7de41 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=b655be7252040c55e27b60508e8f305618a7de41
Author: Tomeu Vizoso <[email protected]> Date: Mon Oct 28 09:59:30 2019 +0100 panfrost: White list the Mali T720 Support for this GPU is equal now to that of T760, so whitelist it. Signed-off-by: Tomeu Vizoso <[email protected]> Reviewed-by: Alyssa Rosenzweig <[email protected]> --- src/gallium/drivers/panfrost/pan_screen.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers/panfrost/pan_screen.c b/src/gallium/drivers/panfrost/pan_screen.c index f0b9585e658..3aa5f05cd5e 100644 --- a/src/gallium/drivers/panfrost/pan_screen.c +++ b/src/gallium/drivers/panfrost/pan_screen.c @@ -739,6 +739,7 @@ panfrost_create_screen(int fd, struct renderonly *ro) /* Check if we're loading against a supported GPU model. */ switch (screen->gpu_id) { + case 0x720: /* T720 */ case 0x750: /* T760 */ case 0x820: /* T820 */ case 0x860: /* T860 */ _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
