summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_context.h
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-10-08 17:20:40 +0100
committerKeith Whitwell <keithw@vmware.com>2009-10-08 17:53:12 +0100
commitd0c918b87a9fb0e86d6b3efedf3ef505e04c527f (patch)
tree2f376ba2fe380c877d0463fa1781222bfff5a6a6 /src/gallium/drivers/llvmpipe/lp_context.h
parent921584181eb2f3b2849d150295dfce1dae25dd11 (diff)
llvmpipe: remove some old sampler support structs
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_context.h')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_context.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_context.h b/src/gallium/drivers/llvmpipe/lp_context.h
index 17e8897546..852f7a1d05 100644
--- a/src/gallium/drivers/llvmpipe/lp_context.h
+++ b/src/gallium/drivers/llvmpipe/lp_context.h
@@ -45,7 +45,7 @@ struct draw_stage;
struct lp_fragment_shader;
struct lp_vertex_shader;
struct lp_blend_state;
-struct lp_setup_context;
+struct setup_context;
struct llvmpipe_context {
struct pipe_context pipe; /**< base class */
@@ -110,16 +110,8 @@ struct llvmpipe_context {
/** Derived from scissor and surface bounds: */
struct pipe_scissor_state cliprect;
- /** TGSI exec things */
- struct {
- struct lp_shader_sampler vert_samplers[PIPE_MAX_SAMPLERS];
- struct lp_shader_sampler *vert_samplers_list[PIPE_MAX_SAMPLERS];
- struct lp_shader_sampler frag_samplers[PIPE_MAX_SAMPLERS];
- struct lp_shader_sampler *frag_samplers_list[PIPE_MAX_SAMPLERS];
- } tgsi;
-
/** The tiling engine */
- struct lp_setup_context *setup;
+ struct setup_context *setup;
/** The primitive drawing context */
struct draw_context *draw;