From 068ba4ac78a62d2d07300a54e6585e16a2c747d5 Mon Sep 17 00:00:00 2001 From: Anuj Phogat Date: Tue, 3 Feb 2015 16:56:04 -0800 Subject: [PATCH] meta: Fix buffer object assignment to account for both pack and unpack bo's create_texture_for_pbo() is shared by _mesa_meta_pbo_GetTexSubImage() and _mesa_meta_pbo_TexSubImage() functions. So, we need to account for both pack and unpack buffer objects. Signed-off-by: Anuj Phogat Reviewed-by: Neil Roberts --- src/mesa/drivers/common/meta_tex_subimage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/common/meta_tex_subimage.c b/src/mesa/drivers/common/meta_tex_subimage.c index ca6fb6a5f21..2aa3a4ce281 100644 --- a/src/mesa/drivers/common/meta_tex_subimage.c +++ b/src/mesa/drivers/common/meta_tex_subimage.c @@ -96,7 +96,7 @@ create_texture_for_pbo(struct gl_context *ctx, bool create_pbo, _mesa_BufferData(pbo_target, row_stride * height, pixels, GL_STREAM_DRAW); - buffer_obj = ctx->Unpack.BufferObj; + buffer_obj = packing->BufferObj; pixels = NULL; _mesa_BindBuffer(pbo_target, 0); -- 2.30.2