diff options
author | José Fonseca <[email protected]> | 2009-08-14 10:27:32 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-08-29 09:21:32 +0100 |
commit | 73af91e938eb27b001404f11195fb06ff9b08903 (patch) | |
tree | 055a4a79134ac662bb8c3874a31787d335c12ca2 /src/gallium/drivers/llvmpipe/lp_context.h | |
parent | 95f38dd67c7dfeb3172ef9723c6f8e4c33de0754 (diff) |
llvmpipe: Eliminate non-LLVM fs execution paths.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_context.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_context.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_context.h b/src/gallium/drivers/llvmpipe/lp_context.h index 7ac83c1e7c1..6cda5e602f1 100644 --- a/src/gallium/drivers/llvmpipe/lp_context.h +++ b/src/gallium/drivers/llvmpipe/lp_context.h @@ -57,7 +57,7 @@ struct llvmpipe_context { const struct pipe_sampler_state *sampler[PIPE_MAX_SAMPLERS]; const struct pipe_depth_stencil_alpha_state *depth_stencil; const struct pipe_rasterizer_state *rasterizer; - const struct lp_fragment_shader *fs; + struct lp_fragment_shader *fs; const struct lp_vertex_shader *vs; /** Other rendering state */ @@ -145,8 +145,6 @@ struct llvmpipe_context { unsigned tex_timestamp; struct llvmpipe_tex_tile_cache *tex_cache[PIPE_MAX_SAMPLERS]; - unsigned use_sse : 1; - unsigned dump_fs : 1; unsigned no_rast : 1; }; |