aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/panfrost/pan_screen.c12
1 files changed, 0 insertions, 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);