remove unneeded includes

This commit is contained in:
Brian 2007-08-22 10:04:16 -06:00
parent 0e87617255
commit 4ed87bf229
7 changed files with 7 additions and 28 deletions

View file

@ -26,10 +26,6 @@
**************************************************************************/
#include <stdio.h>
//#include "mtypes.h"
#include "i915_context.h"
#include "i915_winsys.h"
#include "i915_blit.h"

View file

@ -25,13 +25,6 @@
*
**************************************************************************/
#if 0
#include <strings.h>
#include "glheader.h"
#include "macros.h"
#include "enums.h"
#endif
#include "i915_reg.h"
#include "i915_context.h"
#include "i915_fpc.h"

View file

@ -26,9 +26,6 @@
**************************************************************************/
//#include "imports.h"
//#include "macros.h"
#include "pipe/draw/draw_private.h"
#include "pipe/p_util.h"

View file

@ -25,21 +25,21 @@
*
**************************************************************************/
#include "main/glheader.h"
#include "main/macros.h"
#include "main/enums.h"
#include "vf/vf.h"
#include "pipe/draw/draw_context.h"
#include "i915_context.h"
#include "i915_state.h"
/* XXX should include i915_fpc.h but that causes some trouble atm */
extern void i915_translate_fragment_program( struct i915_context *i915 );
#define EMIT_ATTR( VF_ATTR, FRAG_ATTR, INTERP ) \
do { \
#define EMIT_ATTR( VF_ATTR, FRAG_ATTR, INTERP ) \
do { \
slot_to_vf_attr[nr_attrs] = VF_ATTR; \
nr_attrs++; \
attr_mask |= (1 << (VF_ATTR)); \
attr_mask |= (1 << (VF_ATTR)); \
} while (0)

View file

@ -25,11 +25,6 @@
*
**************************************************************************/
//#include "glheader.h"
//#include "context.h"
//#include "macros.h"
//#include "enums.h"
#include "i915_batch.h"
#include "i915_state_inlines.h"
#include "i915_context.h"

View file

@ -30,7 +30,6 @@
* Michel Dänzer <michel@tungstengraphics.com>
*/
//#include "macros.h"
#include "pipe/p_state.h"
#include "pipe/p_context.h"
#include "pipe/p_defines.h"

View file

@ -28,7 +28,6 @@
#ifndef I915_WINSYS_H
#define I915_WINSYS_H
//#include "main/mtypes.h"
/* This is the interface that softpipe requires any window system
* hosting it to implement. This is the only include file in softpipe