summaryrefslogtreecommitdiff
path: root/src/egl/drivers/dri2/Makefile
AgeCommit message (Collapse)Author
2011-03-04egl/wayland: Move wayland-egl into a subdirBenjamin Franzke
This hopefully fixes wayland-egl's dependency resolution for autogenerated wayland-drm headers.
2011-03-01egl: Add EGL_WL_bind_wayland_displayBenjamin Franzke
2011-02-07egl_dri2: Add wayland platformBenjamin Franzke
2011-02-03egl_dri2: Split out drm platform implementation to a separate fileKristian Høgsberg
2011-02-03egl_dri2: Split out x11 platform codeKristian Høgsberg
2011-01-30egl_dri2: Export glapi symbols for DRI drivers.Chia-I Wu
When an app loads libEGL.so dynamically with RTLD_LOCAL, loading DRI drivers would fail because of missing glapi symbols. This commit makes egl_dri2 load libglapi.so with RTLD_GLOBAL to export glapi symbols for future symbol resolutions. The same trick can be found in GLX. However, egl_dri2 can only do so when --enable-shared-glapi is given. Because, otherwise, both libGL.so and libglapi.so define glapi symbols and egl_dri2 cannot tell which library to load.
2011-01-10egl: Make egl_dri2 and egl_glx built-in drivers.Chia-I Wu
These two drivers are small in size. Making them built-in should simplify packaging.
2011-01-10egl_dri2: Look up _glapi_get_proc_address dynamically.Chia-I Wu
In preparation for making egl_dri2 built-in. It also handles symbol lookup error: /usr/local/lib/egl/egl_dri2.so: undefined symbol: _glapi_get_proc_address more gracefully.
2010-07-08egl_dri2: Support _EGL_PLATFORM_DRMKristian Høgsberg
This lets the egl_dri2 driver initialize on just a DRM fd.
2010-05-07glapi: Move to src/mapi/.Chia-I Wu
Move glapi to src/mapi/{glapi,es1api,es2api}.
2010-02-05egl_dri2: Use pkg-config cflags and libs from configure outputKristian Høgsberg
Running pkg-config in Makefiles is bad form, since it doesn't respect the PKG_CONFIG_PATH value set at ./configure time.
2010-02-04egl: Add driver for EGL on X with DRI2Kristian Høgsberg