egl: Allow a prioritized list of default drivers
authorKristian Høgsberg <krh@bitplanet.net>
Thu, 13 May 2010 20:06:29 +0000 (16:06 -0400)
committerKristian Høgsberg <krh@bitplanet.net>
Thu, 13 May 2010 20:14:07 +0000 (16:14 -0400)
commit681fd73f1e95d43425b946a250b241bfdb0ce1c8
treef0cfdd275af6b83be85c8eedbfd4bc04cac28c9f
parent7413d9ae9ff3e21f517aea97d7a1a211867bdc68
egl: Allow a prioritized list of default drivers

When there is no user driver or any matching display drivers we fall
back to the default driver.  This patch lets us have a list of default
drivers instead of just one.  The drivers are loaded in turn and we
attempt to initialize the display.  If it fails we unload the driver
and move on to the next one.

Compared to the display driver mechanism, this avoids loading a number
of drivers and then only using one.  Also, we call Initialize to see
if the driver will work instead of relying on Probe.  To know for sure
that a driver will work, Probe really have to do a full Initialize, so
we will just use Initialize directly.
src/egl/main/eglapi.c
src/egl/main/eglconfig.c
src/egl/main/egldefines.h
src/egl/main/egldriver.c
src/egl/main/egldriver.h
src/egl/main/eglglobals.c