summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/xlib
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-02-02 15:37:58 +0000
committerJosé Fonseca <jfonseca@vmware.com>2009-02-02 15:37:58 +0000
commitdf73c964d85d2f44d8c62558b5752b2f4443763f (patch)
tree56d6fdd649bf7137118de722b37f4affacd5df5e /src/gallium/winsys/xlib
parentf0ad6b6144bb416bc22ddccca0be4e614131a2b3 (diff)
xlib: Get conditional compilation of drivers working again.
Diffstat (limited to 'src/gallium/winsys/xlib')
-rw-r--r--src/gallium/winsys/xlib/Makefile10
-rw-r--r--src/gallium/winsys/xlib/SConscript27
-rw-r--r--src/gallium/winsys/xlib/xlib.c8
3 files changed, 37 insertions, 8 deletions
diff --git a/src/gallium/winsys/xlib/Makefile b/src/gallium/winsys/xlib/Makefile
index 14d3849f75..5b71e6dc38 100644
--- a/src/gallium/winsys/xlib/Makefile
+++ b/src/gallium/winsys/xlib/Makefile
@@ -22,6 +22,12 @@ INCLUDE_DIRS = \
-I$(TOP)/src/gallium/state_trackers/glx/xlib \
-I$(TOP)/src/gallium/auxiliary
+DEFINES = \
+ -DGALLIUM_SOFTPIPE \
+ -DGALLIUM_CELL \
+ -DGALLIUM_TRACE \
+ -DGALLIUM_BRW
+
XLIB_WINSYS_SOURCES = \
xlib.c \
xlib_cell.c \
@@ -49,10 +55,10 @@ LIBS = \
.SUFFIXES : .cpp
.c.o:
- $(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@
+ $(CC) -c $(INCLUDE_DIRS) $(DEFINES) $(CFLAGS) $< -o $@
.cpp.o:
- $(CXX) -c $(INCLUDE_DIRS) $(CXXFLAGS) $< -o $@
+ $(CXX) -c $(INCLUDE_DIRS) $(DEFINES) $(CXXFLAGS) $< -o $@
diff --git a/src/gallium/winsys/xlib/SConscript b/src/gallium/winsys/xlib/SConscript
index 434572fcd0..0fb4b50f63 100644
--- a/src/gallium/winsys/xlib/SConscript
+++ b/src/gallium/winsys/xlib/SConscript
@@ -13,24 +13,39 @@ if env['platform'] == 'linux' \
env.Append(CPPPATH = [
'#/src/mesa',
'#/src/mesa/main',
+ '#src/gallium/state_trackers/glx/xlib',
])
- sources = [];
+ env.Append(CPPDEFINES = ['USE_XSHM'])
- drivers = [];
+ sources = [
+ 'xlib.c',
+ ]
+
+ drivers = []
if 'softpipe' in env['drivers']:
+ env.Append(CPPDEFINES = 'GALLIUM_SOFTPIPE')
+ sources += ['xlib_softpipe.c']
drivers += [softpipe]
if 'i965simple' in env['drivers']:
- drivers += [i965simple]
+ env.Append(CPPDEFINES = 'GALLIUM_I965SIMPLE')
sources += [
- 'brw_aub.c',
- 'xm_winsys_aub.c',
- ]
+ 'xlib_brw_aub.c',
+ 'xlib_brw_context.c',
+ 'xlib_brw_screen.c',
+ ]
+ drivers += [i965simple]
+ if 'cell' in env['drivers']:
+ env.Append(CPPDEFINES = 'GALLIUM_CELL')
+ sources += ['xlib_cell.c']
+ drivers += [cell]
+
if 'trace' in env['drivers']:
env.Append(CPPDEFINES = 'GALLIUM_TRACE')
+ sources += ['xlib_trace.c']
drivers += [trace]
# TODO: write a wrapper function http://www.scons.org/wiki/WrapperFunctions
diff --git a/src/gallium/winsys/xlib/xlib.c b/src/gallium/winsys/xlib/xlib.c
index 4982230000..da72228215 100644
--- a/src/gallium/winsys/xlib/xlib.c
+++ b/src/gallium/winsys/xlib/xlib.c
@@ -73,16 +73,24 @@ static void _init( void )
switch (xlib_mode) {
case MODE_TRACE:
+#if defined(GALLIUM_TRACE) && defined(GALLIUM_SOFTPIPE)
xmesa_set_driver( &xlib_trace_driver );
+#endif
break;
case MODE_BRW:
+#if defined(GALLIUM_BRW)
xmesa_set_driver( &xlib_brw_driver );
+#endif
break;
case MODE_CELL:
+#if defined(GALLIUM_CELL)
xmesa_set_driver( &xlib_cell_driver );
+#endif
break;
case MODE_SOFTPIPE:
+#if defined(GALLIUM_SOFTPIPE)
xmesa_set_driver( &xlib_softpipe_driver );
+#endif
break;
default:
assert(0);