mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
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 commit0d99ff54cc)
This commit is contained in:
parent
e0a3fa8bb2
commit
a350a802cd
2 changed files with 2 additions and 2 deletions
|
|
@ -40,7 +40,7 @@
|
|||
"description": "radeonsi: Clear uninitialized variable",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"master_sha": null,
|
||||
"because_sha": "029bfa3d253ca70186e245ccf0a7e17bb40a5bab"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue