summaryrefslogtreecommitdiffstats
path: root/src/mesa/program/prog_statevars.c
diff options
context:
space:
mode:
authorRob Herring <[email protected]>2016-02-15 08:24:43 -0600
committerEmil Velikov <[email protected]>2016-02-18 17:47:33 +0000
commit64d2f398f6a7f17f30f5284c812958d54d635eac (patch)
treef38021e666f6d2b0cbc3fb5ef2cf879d201af05a /src/mesa/program/prog_statevars.c
parent12e3ad2ae98a560e2527f4f28423920a15570590 (diff)
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 <[email protected]> Cc: Ilia Mirkin <[email protected]> Signed-off-by: Rob Herring <[email protected]> Reviewed-by: Neil Roberts <[email protected]> Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/mesa/program/prog_statevars.c')
-rw-r--r--src/mesa/program/prog_statevars.c2
1 files changed, 1 insertions, 1 deletions
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)