st/mesa: Clean up header file inclusion in st_manager.h.

Include mtypes.h for GLcontext, gl_buffer_index, and GLframebuffer
symbols.
Include p_compiler.h for boolean symbol.
Include st_context.h in st_cb_eglimage.c as it previously included
st_context.h indirectly through st_manager.h.
This commit is contained in:
Vinson Lee 2010-08-05 16:20:07 -07:00
parent 3d038a3ed2
commit 0a7cbe845f
2 changed files with 6 additions and 2 deletions

View file

@ -33,6 +33,7 @@
#include "util/u_format.h"
#include "st_cb_eglimage.h"
#include "st_cb_fbo.h"
#include "st_context.h"
#include "st_texture.h"
#include "st_format.h"
#include "st_manager.h"

View file

@ -29,8 +29,11 @@
#ifndef ST_MANAGER_H
#define ST_MANAGER_H
#include "state_tracker/st_api.h"
#include "st_context.h"
#include "main/mtypes.h"
#include "pipe/p_compiler.h"
struct st_context;
struct pipe_surface *
st_manager_get_egl_image_surface(struct st_context *st,