diff options
author | Chia-I Wu <olvaffe@gmail.com> | 2010-01-22 14:15:14 +0800 |
---|---|---|
committer | Chia-I Wu <olvaffe@gmail.com> | 2010-01-22 15:03:45 +0800 |
commit | 18b63b55d5626dec86e3470bdf8c9996faf28384 (patch) | |
tree | 188683252fd9c466de6545ba3dc172beabbc5d8c /src/egl/drivers/xdri/Makefile | |
parent | caa75a7ce07e4a5d89b0d7cf8823fe02034c1b3b (diff) |
egl_xdri: Add support for DRISW.
Try DRISW if both DRI2 and DRI fail. It can also be forced by setting
EGL_SOFTWARE. When DRISW is used, single-buffered modes are ignored.
Diffstat (limited to 'src/egl/drivers/xdri/Makefile')
-rw-r--r-- | src/egl/drivers/xdri/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/drivers/xdri/Makefile b/src/egl/drivers/xdri/Makefile index 8e748b71cd..9120620dc5 100644 --- a/src/egl/drivers/xdri/Makefile +++ b/src/egl/drivers/xdri/Makefile @@ -6,7 +6,7 @@ include $(TOP)/configs/current EGL_DRIVER = egl_xdri.so # steal sources from GLX -GLX_SOURCES = dri_common.c XF86dri.c dri2.c dri2_glx.c dri_glx.c +GLX_SOURCES = dri_common.c XF86dri.c dri2.c dri2_glx.c dri_glx.c drisw_glx.c GLX_SOURCES := $(addprefix ../../../glx/x11/,$(GLX_SOURCES)) GLX_INCLUDES = \ $(shell pkg-config --cflags-only-I libdrm) \ |