iris: Drop res variable in resolve_sampler_views

Instead of storing isv->res in a local variable, just use it directly to
increase consistency with similar field accesses.

Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7996>
This commit is contained in:
Nanley Chery
2020-12-08 10:32:29 -08:00
committed by Marge Bot
parent 1f7427f972
commit 04c7fce799

View File

@@ -94,22 +94,22 @@ resolve_sampler_views(struct iris_context *ice,
while (views) {
const int i = u_bit_scan(&views);
struct iris_sampler_view *isv = shs->textures[i];
struct iris_resource *res = isv->res;
if (res->base.target != PIPE_BUFFER) {
if (isv->res->base.target != PIPE_BUFFER) {
if (consider_framebuffer) {
disable_rb_aux_buffer(ice, draw_aux_buffer_disabled,
res, isv->view.base_level, isv->view.levels,
disable_rb_aux_buffer(ice, draw_aux_buffer_disabled, isv->res,
isv->view.base_level, isv->view.levels,
"for sampling");
}
iris_resource_prepare_texture(ice, res, isv->view.format,
iris_resource_prepare_texture(ice, isv->res, isv->view.format,
isv->view.base_level, isv->view.levels,
isv->view.base_array_layer,
isv->view.array_len);
}
iris_emit_buffer_barrier_for(batch, res->bo, IRIS_DOMAIN_OTHER_READ);
iris_emit_buffer_barrier_for(batch, isv->res->bo,
IRIS_DOMAIN_OTHER_READ);
}
}