From: Eric Engestrom Date: Tue, 27 Jun 2017 10:47:14 +0000 (+0100) Subject: mesa: add missing include X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b3eda74acf4bdf7d6982a08876e0cfe79fad94a7;p=mesa.git mesa: add missing include src/mesa/drivers/x11/xm_dd.c:688:7: warning: implicit declaration of function ‘_mesa_update_draw_buffer_bounds’; did you mean ‘_mesa_has_ARB_draw_buffers_blend’? [-Wimplicit-function-declaration] _mesa_update_draw_buffer_bounds(ctx, ctx->DrawBuffer); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Cc: Marek Olšák Fixes: 585c5cf8a514783d9ed3 ("mesa: don't update draw buffer bounds in _mesa_update_state") Signed-off-by: Eric Engestrom --- diff --git a/src/mesa/drivers/x11/xm_dd.c b/src/mesa/drivers/x11/xm_dd.c index 27534da60c2..3e61342512d 100644 --- a/src/mesa/drivers/x11/xm_dd.c +++ b/src/mesa/drivers/x11/xm_dd.c @@ -33,6 +33,7 @@ #include "main/context.h" #include "main/colormac.h" #include "main/fbobject.h" +#include "main/framebuffer.h" #include "main/macros.h" #include "main/mipmap.h" #include "main/image.h"