diff options
author | Marek Olšák <[email protected]> | 2017-11-24 22:08:03 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-11-27 14:12:38 +0100 |
commit | b5444877c0820b7848c07d1bc4e9a706f90894a5 (patch) | |
tree | 77f945c688e4fb3a0e57f07b8604e489966c0e29 /src/gallium/drivers/radeon | |
parent | 95cd74abd403b4193a249783a6d9250fc63fdcd4 (diff) |
radeonsi: always initialize max_forced_staging_uploads
r600_resource is malloc'd.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103808
Fixes: 4b0dc098b256 ("gallium/u_threaded: don't map big VRAM buffers for the first upload directly")
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon')
-rw-r--r-- | src/gallium/drivers/radeon/r600_buffer_common.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/r600_buffer_common.c b/src/gallium/drivers/radeon/r600_buffer_common.c index 770f4e980fd..3e476f745c0 100644 --- a/src/gallium/drivers/radeon/r600_buffer_common.c +++ b/src/gallium/drivers/radeon/r600_buffer_common.c @@ -190,6 +190,8 @@ void si_init_resource_fields(struct r600_common_screen *rscreen, /* Set expected VRAM and GART usage for the buffer. */ res->vram_usage = 0; res->gart_usage = 0; + res->max_forced_staging_uploads = 0; + res->b.max_forced_staging_uploads = 0; if (res->domains & RADEON_DOMAIN_VRAM) { res->vram_usage = size; |