summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/vc4/vc4_state.c
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2016-07-14 17:31:33 -0700
committerEric Anholt <eric@anholt.net>2016-07-15 13:54:00 -0700
commit5db82e0c897da46867dec5886bae1607d3124abc (patch)
tree4d9070a7bd0cdc23c2a5ffc63dbeab77b5241b3f /src/gallium/drivers/vc4/vc4_state.c
parent219b75deb93763cfb160a22833c72e14999565c8 (diff)
downloadexternal_mesa3d-5db82e0c897da46867dec5886bae1607d3124abc.zip
external_mesa3d-5db82e0c897da46867dec5886bae1607d3124abc.tar.gz
external_mesa3d-5db82e0c897da46867dec5886bae1607d3124abc.tar.bz2
vc4: Remove dead dirty_samplers field.
We use a big VC4_DIRTY_FRAGTEX/VC4_DIRTY_VERTEX on the stage, instead.
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_state.c')
-rw-r--r--src/gallium/drivers/vc4/vc4_state.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gallium/drivers/vc4/vc4_state.c b/src/gallium/drivers/vc4/vc4_state.c
index 7aa3931..0912ca5 100644
--- a/src/gallium/drivers/vc4/vc4_state.c
+++ b/src/gallium/drivers/vc4/vc4_state.c
@@ -575,12 +575,10 @@ vc4_sampler_states_bind(struct pipe_context *pctx,
if (hwcso[i])
new_nr = i + 1;
stage_tex->samplers[i] = hwcso[i];
- stage_tex->dirty_samplers |= (1 << i);
}
for (; i < stage_tex->num_samplers; i++) {
stage_tex->samplers[i] = NULL;
- stage_tex->dirty_samplers |= (1 << i);
}
stage_tex->num_samplers = new_nr;
@@ -676,12 +674,10 @@ vc4_set_sampler_views(struct pipe_context *pctx, unsigned shader,
if (views[i])
new_nr = i + 1;
pipe_sampler_view_reference(&stage_tex->textures[i], views[i]);
- stage_tex->dirty_samplers |= (1 << i);
}
for (; i < stage_tex->num_textures; i++) {
pipe_sampler_view_reference(&stage_tex->textures[i], NULL);
- stage_tex->dirty_samplers |= (1 << i);
}
stage_tex->num_textures = new_nr;