summaryrefslogtreecommitdiffstats
path: root/src/gallium/winsys/xlib/xlib.c
diff options
context:
space:
mode:
authorJakob Bornecrantz <[email protected]>2009-09-29 10:22:15 -0700
committerJakob Bornecrantz <[email protected]>2009-10-05 19:48:03 +0100
commitc4b821a4c64d75d944653d665bede946763ed95b (patch)
tree7944e34757eebd8a73a2a68c374d7749d661549a /src/gallium/winsys/xlib/xlib.c
parent1f39d59a2996e2acf6893a8dd1a0293bd8790cc2 (diff)
i965g: Drop i965simple
The driver never work with real hardware and has bitrotted for quite some time now, might as well drop it. If somebody wants to look at it just use git.
Diffstat (limited to 'src/gallium/winsys/xlib/xlib.c')
-rw-r--r--src/gallium/winsys/xlib/xlib.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/gallium/winsys/xlib/xlib.c b/src/gallium/winsys/xlib/xlib.c
index 4b71cf7ec38..163cc8863cb 100644
--- a/src/gallium/winsys/xlib/xlib.c
+++ b/src/gallium/winsys/xlib/xlib.c
@@ -43,7 +43,6 @@
enum mode {
MODE_TRACE,
- MODE_BRW,
MODE_CELL,
MODE_LLVMPIPE,
MODE_SOFTPIPE
@@ -55,9 +54,6 @@ static enum mode get_mode()
if (getenv("XMESA_TRACE"))
return MODE_TRACE;
- if (getenv("XMESA_BRW"))
- return MODE_BRW;
-
#ifdef GALLIUM_CELL
if (!getenv("GALLIUM_NOCELL"))
return MODE_CELL;
@@ -82,11 +78,6 @@ static void _init( void )
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 );