hardware/intel/libva
Révision | 1f026dec91ce7d3d0efc9c572687ea31d49a8678 (tree) |
---|---|
l'heure | 2016-02-02 17:42:23 |
Auteur | Julien Isorce <j.isorce@sams...> |
Commiter | Xiang, Haihao |
driver_name_map: add nouveau and radeon for Mesa Gallium
This patch allows va_getDriverName to succeed.
It is useful in vaInitialize to select the vaapi
driver provided by Mesa Gallium:
lib/dri/gallium_drv_video.so
Signed-off-by: Julien Isorce <j.isorce@samsung.com>
@@ -41,6 +41,8 @@ static const struct driver_name_map g_driver_name_map[] = { | ||
41 | 41 | { "pvrsrvkm", 8, "pvr" }, // Intel UMG PVR driver |
42 | 42 | { "emgd", 4, "emgd" }, // Intel ECG PVR driver |
43 | 43 | { "hybrid", 6, "hybrid" }, // Intel OTC Hybrid driver |
44 | + { "nouveau", 7, "gallium" }, // Mesa Gallium driver | |
45 | + { "radeon", 6, "gallium" }, // Mesa Gallium driver | |
44 | 46 | { NULL, } |
45 | 47 | }; |
46 | 48 |