diff options
author | Vinson Lee <vlee@vmware.com> | 2010-11-07 19:49:12 -0800 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-11-07 19:49:12 -0800 |
commit | 42a8af9239ee2707c06d089c0c981c4d56c1f115 (patch) | |
tree | deb1ad57cb68a9b270ed019c37ff0f251936355e /src/mesa/main | |
parent | 908272b183c40a807a99611574df81711cd86b39 (diff) |
mesa: Clean up header file inclusion in attrib.h.
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/attrib.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mesa/main/attrib.h b/src/mesa/main/attrib.h index 777781bdf0..d59d31b9be 100644 --- a/src/mesa/main/attrib.h +++ b/src/mesa/main/attrib.h @@ -26,8 +26,12 @@ #define ATTRIB_H -#include "main/mtypes.h" +#include "compiler.h" +#include "glheader.h" +#include "mfeatures.h" +struct _glapi_table; +struct gl_context; #if FEATURE_attrib_stack @@ -48,8 +52,6 @@ _mesa_init_attrib_dispatch(struct _glapi_table *disp); #else /* FEATURE_attrib_stack */ -#include "main/compiler.h" - static INLINE void _mesa_PushClientAttrib( GLbitfield mask ) { |