From 95748f648321a9569af61c64da9dfc805c629a24 Mon Sep 17 00:00:00 2001 From: Tomeu Vizoso Date: Wed, 27 Mar 2019 14:56:36 +0100 Subject: [PATCH] panfrost: Set the GEM handle for AFBC buffers Signed-off-by: Tomeu Vizoso Reviewed-by: Alyssa Rosenzweig --- src/gallium/drivers/panfrost/pan_context.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers/panfrost/pan_context.c b/src/gallium/drivers/panfrost/pan_context.c index d242c3f90ce..c513791615e 100644 --- a/src/gallium/drivers/panfrost/pan_context.c +++ b/src/gallium/drivers/panfrost/pan_context.c @@ -87,6 +87,7 @@ panfrost_enable_afbc(struct panfrost_context *ctx, struct panfrost_resource *rsr rsrc->bo->gpu = rsrc->bo->afbc_slab.gpu | (ds ? 0 : 1); rsrc->bo->cpu = rsrc->bo->afbc_slab.cpu; + rsrc->bo->gem_handle = rsrc->bo->afbc_slab.gem_handle; } static void -- 2.30.2