summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2018-08-02 12:15:20 -0700
committerEric Anholt <[email protected]>2018-08-06 13:03:23 -0700
commit5d49076990f6c34fe9134d879e69af5871818b3b (patch)
tree51bcab95c32aaec442647195b15cc33412bec25b /src
parent50a8713d4f90a6c70a23f9f5871420371df283a7 (diff)
v3d: Drop "VC5" from the renderer string.
VC5 isn't a useful name any more, just stick to v3d.
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/v3d/v3d_screen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/v3d/v3d_screen.c b/src/gallium/drivers/v3d/v3d_screen.c
index 2e743851bea..26c41544322 100644
--- a/src/gallium/drivers/v3d/v3d_screen.c
+++ b/src/gallium/drivers/v3d/v3d_screen.c
@@ -46,7 +46,7 @@ v3d_screen_get_name(struct pipe_screen *pscreen)
if (!screen->name) {
screen->name = ralloc_asprintf(screen,
- "VC5 V3D %d.%d",
+ "V3D %d.%d",
screen->devinfo.ver / 10,
screen->devinfo.ver % 10);
}