From 69ae42ca4c1c3886d82a5eb22980b5f02cc0ad54 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Wed, 20 Jun 2018 16:56:26 -0700 Subject: [PATCH] v3d: Don't forget to initialize the buffer offset of a new winsys handle. --- src/gallium/drivers/v3d/v3d_resource.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers/v3d/v3d_resource.c b/src/gallium/drivers/v3d/v3d_resource.c index b91ab30708e..cd49c1af52b 100644 --- a/src/gallium/drivers/v3d/v3d_resource.c +++ b/src/gallium/drivers/v3d/v3d_resource.c @@ -316,6 +316,7 @@ v3d_resource_get_handle(struct pipe_screen *pscreen, struct v3d_bo *bo = rsc->bo; whandle->stride = rsc->slices[0].stride; + whandle->offset = 0; /* If we're passing some reference to our BO out to some other part of * the system, then we can't do any optimizations about only us being -- 2.30.2