remove unneeded #includes
authorBrian Paul <brian.paul@tungstengraphics.com>
Mon, 7 Nov 2005 17:36:34 +0000 (17:36 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Mon, 7 Nov 2005 17:36:34 +0000 (17:36 +0000)
src/mesa/shader/arbfragparse.c
src/mesa/shader/arbvertparse.c

index e222bafd7df6898246acfa060aa667c12f9bafcf..31223cc473778021723359d39af68b706ad77fa6 100644 (file)
@@ -1,8 +1,8 @@
 /*
  * Mesa 3-D graphics library
- * Version:  6.2
+ * Version:  6.5
  *
- * Copyright (C) 1999-2004  Brian Paul   All Rights Reserved.
+ * Copyright (C) 1999-2005  Brian Paul   All Rights Reserved.
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
  */
 
 #include "glheader.h"
-#include "context.h"
 #include "imports.h"
-#include "macros.h"
-#include "mtypes.h"
 #include "program.h"
 #include "arbprogparse.h"
 #include "arbfragparse.h"
index c8455793d9abf0b8bfcd0056cd11e2568fedd176..bb18a2ea4730f04accf29c3216ca8a91598fd27e 100644 (file)
@@ -1,8 +1,8 @@
 /*
  * Mesa 3-D graphics library
- * Version:  6.2
+ * Version:  6.5
  *
- * Copyright (C) 1999-2004  Brian Paul   All Rights Reserved.
+ * Copyright (C) 1999-2005  Brian Paul   All Rights Reserved.
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
  */
 
 #include "glheader.h"
-#include "context.h"
-#include "arbvertparse.h"
-#include "hash.h"
 #include "imports.h"
-#include "macros.h"
-#include "mtypes.h"
 #include "program.h"
-#include "nvprogram.h"
-#include "nvvertparse.h"
-#include "program_instruction.h"
-
 #include "arbprogparse.h"
+#include "arbvertparse.h"
 
 
 /**
@@ -98,7 +90,7 @@ _mesa_parse_arb_vertex_program(GLcontext * ctx, GLenum target,
    }
    program->Parameters     = ap.Parameters; 
 
-#if 1/*DEBUG_VP*/
+#if DEBUG_VP
    _mesa_print_program(ap.Base.NumInstructions, ap.VPInstructions);
 #endif
 }