summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/svga/svga_context.h
diff options
context:
space:
mode:
authorCharmaine Lee <charmainel@vmware.com>2016-08-17 16:50:23 -0700
committerBrian Paul <brianp@vmware.com>2016-08-26 06:19:52 -0600
commit2781d603753148771c1a706150b7a9a54592befe (patch)
tree9f366e0788e3c73e97a453c8b4bd948d65d32230 /src/gallium/drivers/svga/svga_context.h
parent5313b294e68f6b03e6b26930c68fbb30ae16e7c4 (diff)
downloadexternal_mesa3d-2781d603753148771c1a706150b7a9a54592befe.zip
external_mesa3d-2781d603753148771c1a706150b7a9a54592befe.tar.gz
external_mesa3d-2781d603753148771c1a706150b7a9a54592befe.tar.bz2
svga: avoid emitting redundant SetShaderResource command
Tested with Lightsmark2008, Heaven, MTT piglit, glretrace, viewperf, conform. Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/gallium/drivers/svga/svga_context.h')
-rw-r--r--src/gallium/drivers/svga/svga_context.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/drivers/svga/svga_context.h b/src/gallium/drivers/svga/svga_context.h
index a5ec78c..a635ef1 100644
--- a/src/gallium/drivers/svga/svga_context.h
+++ b/src/gallium/drivers/svga/svga_context.h
@@ -377,12 +377,15 @@ struct svga_hw_draw_state
unsigned num_samplers[PIPE_SHADER_TYPES];
SVGA3dSamplerId samplers[PIPE_SHADER_TYPES][PIPE_MAX_SAMPLERS];
+ unsigned num_sampler_views[PIPE_SHADER_TYPES];
+ struct pipe_sampler_view
+ *sampler_views[PIPE_SHADER_TYPES][PIPE_MAX_SAMPLERS];
+
unsigned num_rendertargets;
struct pipe_surface *rtv[SVGA3D_MAX_RENDER_TARGETS];
struct pipe_surface *dsv;
/* used for rebinding */
- unsigned num_sampler_views[PIPE_SHADER_TYPES];
unsigned default_constbuf_size[PIPE_SHADER_TYPES];
};