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.
This commit is contained in:
Vinson Lee 2010-08-12 00:27:01 -07:00
parent 991a24d033
commit 791d7d4bf9
1 changed files with 10 additions and 0 deletions

View File

@ -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.