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>
(cherry picked from commit 0d99ff54cc)
This commit is contained in:
Drew Davenport 2020-01-27 11:13:19 -07:00 committed by Dylan Baker
parent e0a3fa8bb2
commit a350a802cd
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@
"description": "radeonsi: Clear uninitialized variable",
"nominated": true,
"nomination_type": 1,
"resolution": 0,
"resolution": 1,
"master_sha": null,
"because_sha": "029bfa3d253ca70186e245ccf0a7e17bb40a5bab"
},

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);