diff options
author | Kenneth Graunke <[email protected]> | 2019-02-11 11:05:48 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-02-21 10:26:12 -0800 |
commit | be49fb051d236306579e33b90a65cb7b7b94c3e2 (patch) | |
tree | 412d5cd38c76e855769f71bde5b9e618d8fa5608 /src/gallium | |
parent | 15341778ba3b3eaffc43b033f8240ffd99c48379 (diff) |
iris: Stop chopping off the first nine characters of the renderer string
Diffstat (limited to 'src/gallium')
-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 5ab3076ad0d..0ee07a7e4f6 100644 --- a/src/gallium/drivers/iris/iris_screen.c +++ b/src/gallium/drivers/iris/iris_screen.c @@ -86,7 +86,7 @@ iris_get_name(struct pipe_screen *pscreen) chipset = "Unknown Intel Chipset"; break; } - return &chipset[9]; + return chipset; } static int |