diff options
author | Michel Dänzer <[email protected]> | 2007-10-03 20:33:23 +0200 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2007-10-03 20:33:23 +0200 |
commit | 344464bf2e4e151968cfb101c2477e440508b1f0 (patch) | |
tree | 18bddd332b0b1af67246c985e976ee937d2ae600 /src/mesa/pipe/softpipe/sp_context.c | |
parent | ce765a7fb77e12ff083a9068ec232a15bcf41f66 (diff) |
Track fragment and vertex shader code generation via pipe shader state objects.
Unfortunately, the generated fragment shader code is effectively unusable until
it handles quad->mask.
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_context.c')
-rw-r--r-- | src/mesa/pipe/softpipe/sp_context.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/pipe/softpipe/sp_context.c b/src/mesa/pipe/softpipe/sp_context.c index 610e7ad6899..daccc8fe238 100644 --- a/src/mesa/pipe/softpipe/sp_context.c +++ b/src/mesa/pipe/softpipe/sp_context.c @@ -249,6 +249,12 @@ struct pipe_context *softpipe_create( struct pipe_winsys *pipe_winsys, { struct softpipe_context *softpipe = CALLOC_STRUCT(softpipe_context); +#if defined(__i386__) || defined(__386__) + softpipe->use_sse = getenv("GALLIUM_SSE") != NULL; +#else + softpipe->use_sse = false; +#endif + softpipe->pipe.winsys = pipe_winsys; softpipe->pipe.destroy = softpipe_destroy; |