mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 19:58:09 +02:00
llvmpipe: remove no-op checks in sampler, sampler_view functions
Reviewed-by: Roland Scheidegger <sroland@vmware.com> Reviewed-by: José Fonseca <jfonseca@vmware.com>
This commit is contained in:
parent
61a3e9936c
commit
177c9be615
1 changed files with 0 additions and 14 deletions
|
|
@ -77,13 +77,6 @@ llvmpipe_bind_sampler_states(struct pipe_context *pipe,
|
|||
assert(shader < PIPE_SHADER_TYPES);
|
||||
assert(start + num <= Elements(llvmpipe->samplers[shader]));
|
||||
|
||||
/* Check for no-op */
|
||||
if (start + num <= llvmpipe->num_samplers[shader] &&
|
||||
!memcmp(llvmpipe->samplers[shader] + start, samplers,
|
||||
num * sizeof(void *))) {
|
||||
return;
|
||||
}
|
||||
|
||||
draw_flush(llvmpipe->draw);
|
||||
|
||||
/* set the new samplers */
|
||||
|
|
@ -125,13 +118,6 @@ llvmpipe_set_sampler_views(struct pipe_context *pipe,
|
|||
assert(shader < PIPE_SHADER_TYPES);
|
||||
assert(start + num <= Elements(llvmpipe->sampler_views[shader]));
|
||||
|
||||
/* Check for no-op */
|
||||
if (start + num <= llvmpipe->num_sampler_views[shader] &&
|
||||
!memcmp(llvmpipe->sampler_views[shader] + start, views,
|
||||
num * sizeof(struct pipe_sampler_view *))) {
|
||||
return;
|
||||
}
|
||||
|
||||
draw_flush(llvmpipe->draw);
|
||||
|
||||
/* set the new sampler views */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue