st/egl: Build a single EGL driver.
authorChia-I Wu <olv@lunarg.com>
Wed, 23 Jun 2010 13:36:20 +0000 (21:36 +0800)
committerChia-I Wu <olv@lunarg.com>
Tue, 29 Jun 2010 09:16:20 +0000 (17:16 +0800)
commita81ef14228c6fe2893527b7b5f12855c90db3f8e
treeaf46c977703847b4f262aee4efa42d198ded78ef
parentd5ab243d5a5bacbd2ba615d40f13c8ab37364745
st/egl: Build a single EGL driver.

This change makes st/egl build a single egl_gallium.so and multiple
st_<API>.so and pipe_<HW>.so.  When a display is initialized, the
corresponding pipe driver will be loaded.  When a context is created,
the corresponding state tracker will be loaded.

Unlike DRI drivers, no ABI compatibility is maintained.  egl_gallium,
pipe drivers and state trackers should always be distributed as a single
package.  As such, there is only a single src/gallium/targets/egl/ that
builds everything for the package.
src/egl/main/egldriver.c
src/gallium/state_trackers/egl/x11/native_x11.c
src/gallium/targets/egl/Makefile
src/gallium/targets/egl/SConscript
src/gallium/targets/egl/egl.c
src/gallium/targets/egl/pipe_i965.c
src/gallium/targets/egl/pipe_nouveau.c
src/gallium/targets/egl/pipe_radeon.c
src/gallium/targets/egl/pipe_swrast.c
src/gallium/targets/egl/pipe_vmwgfx.c