From: Vinson Lee Date: Thu, 12 Aug 2010 07:27:01 +0000 (-0700) Subject: mesa: Include missing headers in prog_print.h. X-Git-Tag: 062012170305~10786 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=791d7d4bf98ca5e38fea76462ef38cfd782b464b;p=profile%2Fivi%2Fmesa.git mesa: Include missing headers in prog_print.h. Include stdio.h for FILE symbol. Include glheader.h for GL symbols. Include mtypes.h for GLcontext symbol. Add forward declarations. --- diff --git a/src/mesa/program/prog_print.h b/src/mesa/program/prog_print.h index 9ab7456..4667373 100644 --- a/src/mesa/program/prog_print.h +++ b/src/mesa/program/prog_print.h @@ -26,6 +26,16 @@ #ifndef PROG_PRINT_H #define PROG_PRINT_H +#include + +#include "main/glheader.h" +#include "main/mtypes.h" + +struct gl_program; +struct gl_program_parameter_list; +struct gl_shader; +struct prog_instruction; + /** * The output style to use when printing programs.