summaryrefslogtreecommitdiff
path: root/src/mesa/program/prog_print.h
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2010-08-12 00:27:01 -0700
committerVinson Lee <vlee@vmware.com>2010-08-12 00:27:01 -0700
commit791d7d4bf98ca5e38fea76462ef38cfd782b464b (patch)
tree684961ccc2432d6b3f15304bb68043b48322bfd2 /src/mesa/program/prog_print.h
parent991a24d03337ca674896527fe5007490e16838c3 (diff)
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.
Diffstat (limited to 'src/mesa/program/prog_print.h')
-rw-r--r--src/mesa/program/prog_print.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/program/prog_print.h b/src/mesa/program/prog_print.h
index 9ab7456016..4667373f37 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 <stdio.h>
+
+#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.