summaryrefslogtreecommitdiffstats
path: root/src/mesa/state_tracker/st_context.h
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2019-11-27 15:10:27 -0500
committerMarek Olšák <[email protected]>2019-12-09 21:09:28 -0500
commit2891c4b2e2cc45d2aba89b2260c46ea1fe75a505 (patch)
tree6649898ab0244bd90a5aa45f7fbfebda4187ad16 /src/mesa/state_tracker/st_context.h
parent226e7aee70592a0eb4c8cc2f750999e90e59667f (diff)
st/mesa: save currently bound vertex samplers and sampler views in st_context
for st_draw_feedback.c Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_context.h')
-rw-r--r--src/mesa/state_tracker/st_context.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_context.h b/src/mesa/state_tracker/st_context.h
index 3778bbd4528..bf77f3e7757 100644
--- a/src/mesa/state_tracker/st_context.h
+++ b/src/mesa/state_tracker/st_context.h
@@ -188,8 +188,11 @@ struct st_context
struct pipe_blend_state blend;
struct pipe_depth_stencil_alpha_state depth_stencil;
struct pipe_rasterizer_state rasterizer;
+ struct pipe_sampler_state vert_samplers[PIPE_MAX_SAMPLERS];
struct pipe_sampler_state frag_samplers[PIPE_MAX_SAMPLERS];
+ GLuint num_vert_samplers;
GLuint num_frag_samplers;
+ struct pipe_sampler_view *vert_sampler_views[PIPE_MAX_SAMPLERS];
struct pipe_sampler_view *frag_sampler_views[PIPE_MAX_SAMPLERS];
GLuint num_sampler_views[PIPE_SHADER_TYPES];
struct pipe_clip_state clip;