st/mesa: re-order #includes in st_manager.c

include mesa headers before gallium headers to avoid problem with
ffs() being defined in u_math.h and then again in imports.h

The next commit will add some #ifdefs to prevent multiple definitions
of ffs().
This commit is contained in:
Brian Paul 2012-01-12 08:39:11 -07:00
parent 0c57323de8
commit 8cfaab59e0
1 changed files with 10 additions and 10 deletions

View File

@ -26,16 +26,6 @@
* Chia-I Wu <olv@lunarg.com>
*/
#include "state_tracker/st_gl_api.h"
#include "pipe/p_context.h"
#include "pipe/p_screen.h"
#include "util/u_format.h"
#include "util/u_pointer.h"
#include "util/u_inlines.h"
#include "util/u_atomic.h"
#include "util/u_surface.h"
#include "main/mtypes.h"
#include "main/context.h"
#include "main/mfeatures.h"
@ -54,6 +44,16 @@
#include "st_cb_flush.h"
#include "st_manager.h"
#include "state_tracker/st_gl_api.h"
#include "pipe/p_context.h"
#include "pipe/p_screen.h"
#include "util/u_format.h"
#include "util/u_pointer.h"
#include "util/u_inlines.h"
#include "util/u_atomic.h"
#include "util/u_surface.h"
/**
* Cast wrapper to convert a struct gl_framebuffer to an st_framebuffer.
* Return NULL if the struct gl_framebuffer is a user-created framebuffer.