diff options
author | Giuseppe Bilotta <[email protected]> | 2015-03-22 07:21:01 +0100 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2015-03-23 13:25:34 +0000 |
commit | 76039b38f0ef54ca61cbe72b899dfcf0f0c724e4 (patch) | |
tree | d81f03ca36eefac1481e85f9a570c90c34cb831a /src/gallium/drivers/nouveau | |
parent | 31d4e6fbffb0c5bcaf92e2c2953f58dc072295d6 (diff) |
gallium: implement get_device_vendor() for existing drivers
The only hackish ones are llvmpipe and softpipe, which currently return
the same string as for get_vendor(), while ideally they should return
the CPU vendor.
Signed-off-by: Giuseppe Bilotta <[email protected]>
Reviewed-by: Tom Stellard <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau')
-rw-r--r-- | src/gallium/drivers/nouveau/nouveau_screen.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nouveau_screen.c b/src/gallium/drivers/nouveau/nouveau_screen.c index 517978d8858..b4f1413fd8b 100644 --- a/src/gallium/drivers/nouveau/nouveau_screen.c +++ b/src/gallium/drivers/nouveau/nouveau_screen.c @@ -43,6 +43,12 @@ nouveau_screen_get_vendor(struct pipe_screen *pscreen) return "nouveau"; } +static const char * +nouveau_screen_get_device_vendor(struct pipe_screen *pscreen) +{ + return "NVIDIA"; +} + static uint64_t nouveau_screen_get_timestamp(struct pipe_screen *pscreen) { @@ -182,6 +188,7 @@ nouveau_screen_init(struct nouveau_screen *screen, struct nouveau_device *dev) pscreen->get_name = nouveau_screen_get_name; pscreen->get_vendor = nouveau_screen_get_vendor; + pscreen->get_device_vendor = nouveau_screen_get_device_vendor; pscreen->get_timestamp = nouveau_screen_get_timestamp; |