• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

hardware/intel/common/libva


Commit MetaInfo

Revisión2eef7235d429b1051bcaf75281868f40ee563c9d (tree)
Tiempo2017-02-07 13:27:37
AutorMark Thompson <sw@jkqx...>
CommiterSean V. Kelley

Log Message

drm: Fix Mesa driver names

The use of "gallium" as the driver name was removed in Mesa commit
0c0f841e5de27d01312f8857641668ca439b1ab1. This updates the mapping
to use the individual driver names.

Fixes #25.

Signed-off-by: Mark Thompson <sw@jkqxz.net>

Cambiar Resumen

Diferencia incremental

--- a/va/drm/va_drm_utils.c
+++ b/va/drm/va_drm_utils.c
@@ -41,8 +41,8 @@ static const struct driver_name_map g_driver_name_map[] = {
4141 { "pvrsrvkm", 8, "pvr" }, // Intel UMG PVR driver
4242 { "emgd", 4, "emgd" }, // Intel ECG PVR driver
4343 { "hybrid", 6, "hybrid" }, // Intel OTC Hybrid driver
44- { "nouveau", 7, "gallium" }, // Mesa Gallium driver
45- { "radeon", 6, "gallium" }, // Mesa Gallium driver
44+ { "nouveau", 7, "nouveau" }, // Mesa Gallium driver
45+ { "radeon", 6, "r600" }, // Mesa Gallium driver
4646 { NULL, }
4747 };
4848