From: Eric Anholt Date: Thu, 2 Aug 2018 19:15:20 +0000 (-0700) Subject: v3d: Drop "VC5" from the renderer string. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5d49076990f6c34fe9134d879e69af5871818b3b;p=mesa.git v3d: Drop "VC5" from the renderer string. VC5 isn't a useful name any more, just stick to v3d. --- 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); }