From 0357a2e012982d610b5292327ead8917f1a1ce77 Mon Sep 17 00:00:00 2001 From: Eleni Maria Stea Date: Tue, 28 Dec 2021 15:52:44 +0200 Subject: [PATCH] dri_drawable: missing header MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit dri_util.h must be included in dri_drawable.h for __DRI* types and driDrawPriv to be defined. Signed-off-by: Eleni Maria Stea Reviewed-by: Marek Olšák Part-of: --- src/gallium/frontends/dri/dri_drawable.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/frontends/dri/dri_drawable.h b/src/gallium/frontends/dri/dri_drawable.h index 4626bad0c00..2226d8a8c62 100644 --- a/src/gallium/frontends/dri/dri_drawable.h +++ b/src/gallium/frontends/dri/dri_drawable.h @@ -31,6 +31,7 @@ #include "pipe/p_compiler.h" #include "pipe/p_format.h" #include "frontend/api.h" +#include "dri_util.h" struct pipe_surface; struct st_framebuffer;