radeonsi: Clear uninitialized variable

|view| was not initialized leading to flaky test failures in SkQP
test unitTest_ES2BlendWithNoTexture.

Fixes: 029bfa3d25 "radeonsi: add ability to bind images as image buffers"

Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3592>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3592>
This commit is contained in:
Drew Davenport 2020-01-27 11:13:19 -07:00 committed by Marge Bot
parent 815a603889
commit 0d99ff54cc
1 changed files with 1 additions and 1 deletions

View File

@ -903,7 +903,7 @@ void si_update_ps_colorbuf0_slot(struct si_context *sctx)
if (surf) {
struct si_texture *tex = (struct si_texture*)surf->texture;
struct pipe_image_view view;
struct pipe_image_view view = {0};
assert(tex);
assert(!tex->is_depth);