diff options
author | Kenneth Graunke <[email protected]> | 2019-04-24 12:53:30 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-04-24 12:54:27 -0700 |
commit | 19b246257dba0e81eb57592fe8e66d7715b4ff09 (patch) | |
tree | 25f70e43b7a97c62c084ed0117bde563391809f8 /src | |
parent | 69430d7e59e8b4b38567cd1f8bb6d4e747b2650c (diff) |
iris: Actually put Mesa in GL_RENDERER string
I constructed the right thing and then returned the other one.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/iris/iris_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/iris/iris_screen.c b/src/gallium/drivers/iris/iris_screen.c index 0dda0da6d46..4318dd03083 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 |