summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/gallium/drivers/iris/iris_screen.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/drivers/iris/iris_screen.c b/src/gallium/drivers/iris/iris_screen.c
index 02322436773..6dff3a47b65 100644
--- a/src/gallium/drivers/iris/iris_screen.c
+++ b/src/gallium/drivers/iris/iris_screen.c
@@ -63,7 +63,7 @@ iris_flush_frontbuffer(struct pipe_screen *_screen,
static const char *
iris_get_vendor(struct pipe_screen *pscreen)
{
- return "Mesa Project";
+ return "Intel";
}
static const char *
@@ -76,6 +76,7 @@ static const char *
iris_get_name(struct pipe_screen *pscreen)
{
struct iris_screen *screen = (struct iris_screen *)pscreen;
+ static char buf[128];
const char *chipset;
switch (screen->pci_id) {
@@ -86,6 +87,8 @@ iris_get_name(struct pipe_screen *pscreen)
chipset = "Unknown Intel Chipset";
break;
}
+
+ snprintf(buf, sizeof(buf), "Mesa %s", chipset);
return chipset;
}