From: Giuseppe Bilotta Date: Sun, 22 Mar 2015 06:21:00 +0000 (+0100) Subject: gallium: introduce get_device_vendor() entrypoint for pipes X-Git-Tag: upstream/17.1.0~19854 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=31d4e6fbffb0c5bcaf92e2c2953f58dc072295d6;p=platform%2Fupstream%2Fmesa.git gallium: introduce get_device_vendor() entrypoint for pipes This will be needed by Clover to return the correct information to CL_DEVICE_VENDOR info queries. Signed-off-by: Giuseppe Bilotta Reviewed-by: Michel Dänzer --- diff --git a/src/gallium/docs/source/screen.rst b/src/gallium/docs/source/screen.rst index 26cc9ff..4386bcf 100644 --- a/src/gallium/docs/source/screen.rst +++ b/src/gallium/docs/source/screen.rst @@ -462,6 +462,12 @@ get_vendor Returns the screen vendor. +get_device_vendor +^^^^^^^^^^^^^^^^^ + +Returns the actual vendor of the device driving the screen +(as opposed to the driver vendor). + .. _get_param: get_param diff --git a/src/gallium/include/pipe/p_screen.h b/src/gallium/include/pipe/p_screen.h index 4018f8a..21e7dd3 100644 --- a/src/gallium/include/pipe/p_screen.h +++ b/src/gallium/include/pipe/p_screen.h @@ -72,6 +72,14 @@ struct pipe_screen { const char *(*get_vendor)( struct pipe_screen * ); /** + * Returns the device vendor. + * + * The returned value should return the actual device vendor/manufacturer, + * rather than a potentially generic driver string. + */ + const char *(*get_device_vendor)( struct pipe_screen * ); + + /** * Query an integer-valued capability/parameter/limit * \param param one of PIPE_CAP_x */