Module: Mesa
Branch: master
Commit: 61a3e9936cec3a2d061c7500c3acaf10d426cee5
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=61a3e9936cec3a2d061c7500c3acaf10d426cee5

Author: Brian Paul <[email protected]>
Date:   Wed Apr  2 17:15:38 2014 -0600

softpipe: remove no-op checks in sampler, sampler_view functions

Reviewed-by: Roland Scheidegger <[email protected]>
Reviewed-by: José Fonseca <[email protected]>

---

 src/gallium/drivers/softpipe/sp_state_sampler.c |   14 --------------
 1 file changed, 14 deletions(-)

diff --git a/src/gallium/drivers/softpipe/sp_state_sampler.c 
b/src/gallium/drivers/softpipe/sp_state_sampler.c
index 161e0e1..e512418 100644
--- a/src/gallium/drivers/softpipe/sp_state_sampler.c
+++ b/src/gallium/drivers/softpipe/sp_state_sampler.c
@@ -57,13 +57,6 @@ softpipe_bind_sampler_states(struct pipe_context *pipe,
    assert(shader < PIPE_SHADER_TYPES);
    assert(start + num <= Elements(softpipe->samplers[shader]));
 
-   /* Check for no-op */
-   if (start + num <= softpipe->num_samplers[shader] &&
-       !memcmp(softpipe->samplers[shader] + start, samplers,
-               num * sizeof(void *))) {
-      return;
-   }
-
    draw_flush(softpipe->draw);
 
    /* set the new samplers */
@@ -112,13 +105,6 @@ softpipe_set_sampler_views(struct pipe_context *pipe,
    assert(shader < PIPE_SHADER_TYPES);
    assert(start + num <= Elements(softpipe->sampler_views[shader]));
 
-   /* Check for no-op */
-   if (start + num <= softpipe->num_sampler_views[shader] &&
-       !memcmp(softpipe->sampler_views[shader] + start, views,
-               num * sizeof(struct pipe_sampler_view *))) {
-      return;
-   }
-
    draw_flush(softpipe->draw);
 
    /* set the new sampler views */

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to