From 19da8121d6ad12efbff136e54fd90ef1b5327b03 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Wed, 15 Jul 2020 19:22:53 -0400 Subject: [PATCH] panfrost: Enable Chromium With the latest batch of fixes, Chromium works (including WebGL support, although performance is still WIP). Signed-off-by: Alyssa Rosenzweig Part-of: --- src/gallium/drivers/panfrost/pan_screen.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/gallium/drivers/panfrost/pan_screen.c b/src/gallium/drivers/panfrost/pan_screen.c index b4ec7d35666..d850cca71da 100644 --- a/src/gallium/drivers/panfrost/pan_screen.c +++ b/src/gallium/drivers/panfrost/pan_screen.c @@ -677,18 +677,6 @@ panfrost_screen_get_compiler_options(struct pipe_screen *pscreen, struct pipe_screen * panfrost_create_screen(int fd, struct renderonly *ro) { - /* Blacklist apps known to be buggy under Panfrost */ - const char *proc = util_get_process_name(); - const char *blacklist[] = { - "chromium", - "chrome", - }; - - for (unsigned i = 0; i < ARRAY_SIZE(blacklist); ++i) { - if ((strcmp(blacklist[i], proc) == 0)) - return NULL; - } - /* Create the screen */ struct panfrost_screen *screen = rzalloc(NULL, struct panfrost_screen);