summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/dri/i965/intel_screen.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_screen.c b/src/mesa/drivers/dri/i965/intel_screen.c
index 68026d991be..f137e3ecf97 100644
--- a/src/mesa/drivers/dri/i965/intel_screen.c
+++ b/src/mesa/drivers/dri/i965/intel_screen.c
@@ -674,9 +674,13 @@ intel_create_image_common(__DRIscreen *dri_screen,
return NULL;
}
+ /* We request that the bufmgr zero because, if a buffer gets re-used from
+ * the pool, we don't want to leak random garbage from our process to some
+ * other.
+ */
image->bo = brw_bo_alloc_tiled(screen->bufmgr, "image", surf.size,
isl_tiling_to_i915_tiling(mod_info->tiling),
- surf.row_pitch, 0);
+ surf.row_pitch, BO_ALLOC_ZEROED);
if (image->bo == NULL) {
free(image);
return NULL;