diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2007-08-08 12:32:06 +0100 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2007-08-08 12:32:06 +0100 |
commit | 65f7b3834b62f3ab7e83a9f290cc6a66cda60c05 (patch) | |
tree | 2d6eb04d9175b2e858b3db82e2343bc21cf30c8c | |
parent | 715acc7622255f7cc99d632c57aac14af4bac89a (diff) |
Don't use hardware driver by default, until its working a bit better.
-rw-r--r-- | src/mesa/drivers/dri/intel_winsys/intel_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/intel_winsys/intel_context.c b/src/mesa/drivers/dri/intel_winsys/intel_context.c index e8b330e503..66be3af72b 100644 --- a/src/mesa/drivers/dri/intel_winsys/intel_context.c +++ b/src/mesa/drivers/dri/intel_winsys/intel_context.c @@ -372,7 +372,7 @@ intelCreateContext(const __GLcontextModes * mesaVis, /* * Pipe-related setup */ - if (getenv("INTEL_SOFTPIPE")) { + if (!getenv("INTEL_HW")) { intel->pipe = intel_create_softpipe( intel ); } else { |