From 19b246257dba0e81eb57592fe8e66d7715b4ff09 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Wed, 24 Apr 2019 12:53:30 -0700 Subject: [PATCH] iris: Actually put Mesa in GL_RENDERER string I constructed the right thing and then returned the other one. --- src/gallium/drivers/iris/iris_screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/iris/iris_screen.c b/src/gallium/drivers/iris/iris_screen.c index 0dda0da..4318dd0 100644 --- a/src/gallium/drivers/iris/iris_screen.c +++ b/src/gallium/drivers/iris/iris_screen.c @@ -90,7 +90,7 @@ iris_get_name(struct pipe_screen *pscreen) } snprintf(buf, sizeof(buf), "Mesa %s", chipset); - return chipset; + return buf; } static int -- 2.7.4