From: Rob Herring Date: Mon, 15 Feb 2016 14:24:43 +0000 (-0600) Subject: Android: fix build break in libmesa_program X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=64d2f398f6a7f17f30f5284c812958d54d635eac;p=mesa.git Android: fix build break in libmesa_program Commit 5fd848f6c9ee ("program: Use _mesa_geometric_samples to calculate gl_NumSamples") broken Android builds. Add the missing include path "main" to framebuffer.h like other includes in prog_statevars.c. Cc: Neil Roberts Cc: Ilia Mirkin Signed-off-by: Rob Herring Reviewed-by: Neil Roberts Reviewed-by: Emil Velikov --- diff --git a/src/mesa/program/prog_statevars.c b/src/mesa/program/prog_statevars.c index 489f75fd577..db53377d705 100644 --- a/src/mesa/program/prog_statevars.c +++ b/src/mesa/program/prog_statevars.c @@ -40,7 +40,7 @@ #include "prog_statevars.h" #include "prog_parameter.h" #include "main/samplerobj.h" -#include "framebuffer.h" +#include "main/framebuffer.h" #define ONE_DIV_SQRT_LN2 (1.201122408786449815)