configs: fix some remains of the i915simple driver
authorZack Rusin <zackr@vmware.com>
Tue, 6 Oct 2009 16:38:47 +0000 (12:38 -0400)
committerZack Rusin <zackr@vmware.com>
Mon, 12 Oct 2009 00:02:47 +0000 (20:02 -0400)
doxygen/gallium.doc
src/gallium/winsys/xlib/SConscript

index 4c1434460e9ee9bb955ed53764765c6c6110a5db..f0ff36075a5aa2a78d03972043d503fea8b29804 100644 (file)
@@ -33,8 +33,7 @@
   
   - Pipe drivers:
     - \ref softpipe
-    - \ref i915simple
-    - Simple 965 driver (brw_context.h, brw_winsys.h)
+    - \ref i915g
     - Cell driver (cell_context.h, cell_winsys.h)
     - \ref failover
 
   \sa sp_winsys.h
 */
 
-/** \page i915simple Simple i915 Driver
+/** \page i915g i915 Driver
 
   The i915 Gallium3D Driver is an initial hardware driver implementation within
   the Gallium3D driver architecture. We expect that once complete this driver
   The Draw module is effectively the part of \ref softpipe which is concerned with
   vertex processing, split off into a separate module so that it can be reused
   by drivers for rasterization-only hardware. As such it is also instantiated
-  by the \ref i915simple driver.
+  by the \ref i915g driver.
 
   Additionally, there are cases in the Mesa OpenGL state_tracker where it is
   required to obtain transformed vertices and yet it is anticipated that using
index 14d4ca7c33b361ddcee6c975ab896ee3da0c9eea..dfe550f733bbc187afbd7350629028e8c6735786 100644 (file)
@@ -5,7 +5,7 @@ Import('*')
 
 if env['platform'] == 'linux' \
         and 'mesa' in env['statetrackers'] \
-        and set(('softpipe', 'llvmpipe', 'i915simple', 'trace')).intersection(env['drivers']) \
+        and set(('softpipe', 'llvmpipe', 'i915', 'trace')).intersection(env['drivers']) \
         and not env['dri']:
 
     env = env.Clone()