diff options
author | Dave Airlie <[email protected]> | 2020-06-16 07:22:40 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2020-06-17 05:19:01 +1000 |
commit | 94acd419dad9075d288bb41a480d38e173587df0 (patch) | |
tree | 2b08bea411547cfc70e7665ef1d04654ef2dc5ed /src/gallium/drivers/virgl/virgl_screen.c | |
parent | 8f9b8af78250fe7644622580c53559caa81d155e (diff) |
virgl: change vendor id to reflect reality more.
virgl vendor id should probably be little more generic now.
I think I picked this becuase the virtio pci id space was under
RH's name and they did pay for it, but at this point I think it's
better to just use something generic.
Reviewed-by: Gert Wollny <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5483>
Diffstat (limited to 'src/gallium/drivers/virgl/virgl_screen.c')
-rw-r--r-- | src/gallium/drivers/virgl/virgl_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/virgl/virgl_screen.c b/src/gallium/drivers/virgl/virgl_screen.c index f646b194dac..eb3712b24cd 100644 --- a/src/gallium/drivers/virgl/virgl_screen.c +++ b/src/gallium/drivers/virgl/virgl_screen.c @@ -54,7 +54,7 @@ DEBUG_GET_ONCE_FLAGS_OPTION(virgl_debug, "VIRGL_DEBUG", debug_options, 0) static const char * virgl_get_vendor(struct pipe_screen *screen) { - return "Red Hat"; + return "Mesa/X.org"; } |