From: Eric Anholt Date: Mon, 5 May 2008 20:45:03 +0000 (-0700) Subject: Initialize bufmgr_gem->validate_array[i].offset. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5290ec4756eb33ec27e06bb68d64c33472276ac3;p=mesa.git Initialize bufmgr_gem->validate_array[i].offset. This is just cosmetic, to produce less scary values when the ioctl fails and doesn't return values there. --- diff --git a/src/mesa/drivers/dri/intel/intel_bufmgr_gem.c b/src/mesa/drivers/dri/intel/intel_bufmgr_gem.c index 37e75081ecb..0b136b19da1 100644 --- a/src/mesa/drivers/dri/intel/intel_bufmgr_gem.c +++ b/src/mesa/drivers/dri/intel/intel_bufmgr_gem.c @@ -228,6 +228,7 @@ intel_add_validate_buffer(dri_bo *bo) bufmgr_gem->validate_array[index].relocation_count = bo_gem->reloc_count; bufmgr_gem->validate_array[index].relocs_ptr = (uintptr_t)bo_gem->relocs; bufmgr_gem->validate_array[index].alignment = 0; + bufmgr_gem->validate_array[index].buffer_offset = 0; bufmgr_gem->validate_bo[index] = bo; dri_bo_reference(bo); bufmgr_gem->validate_count++;