silence some warnings (Evgeny Kotsuba)
authorBrian Paul <brian.paul@tungstengraphics.com>
Wed, 28 May 2003 15:30:53 +0000 (15:30 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Wed, 28 May 2003 15:30:53 +0000 (15:30 +0000)
src/mesa/math/m_trans_tmp.h
src/mesa/math/m_translate.c
src/mesa/tnl/t_imm_api.c
src/mesa/tnl/t_imm_elt.c

index 9020bcaddadb90e3e0354bf7455aa9adfb0dfa44..2ade71e4b61ba2e799296fa933de43f2da1d6fd1 100644 (file)
@@ -1,10 +1,8 @@
-/* $Id: m_trans_tmp.h,v 1.7 2002/01/30 16:52:02 brianp Exp $ */
-
 /*
  * Mesa 3-D graphics library
- * Version:  4.0.2
+ * Version:  5.1
  *
- * Copyright (C) 1999-2002  Brian Paul   All Rights Reserved.
+ * Copyright (C) 1999-2003  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"),
@@ -224,13 +222,34 @@ static void INIT(void)
 }
 
 
+#ifdef INIT
 #undef INIT
+#endif
+#ifdef DEST_1UI
 #undef DEST_1UI
+#endif
+#ifdef DEST_1UB
 #undef DEST_1UB
+#endif
+#ifdef DEST_4UB
 #undef DEST_4UB
+#endif
+#ifdef DEST_4US
 #undef DEST_4US
+#endif
+#ifdef DEST_3F
 #undef DEST_3F
+#endif
+#ifdef DEST_4F
 #undef DEST_4F
+#endif
+#ifdef DEST_1F
 #undef DEST_1F
+#endif
+#ifdef SZ
 #undef SZ
+#endif
+#ifdef TAG
 #undef TAG
+#endif
+
index 0c4a1b1631ddf5ed387119772e565b9e42a1e06b..def657e1c85c7f775e421264e423ff62e9187a2f 100644 (file)
@@ -1,10 +1,8 @@
-/* $Id: m_translate.c,v 1.11 2003/03/01 01:50:24 brianp Exp $ */
-
 /*
  * Mesa 3-D graphics library
- * Version:  4.1
+ * Version:  5.1
  *
- * Copyright (C) 1999-2002  Brian Paul   All Rights Reserved.
+ * Copyright (C) 1999-2003  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"),
@@ -550,7 +548,9 @@ static void init_translate_raw(void)
 
 
 #undef TAB
+#ifdef CLASS
 #undef CLASS
+#endif
 #undef ARGS
 #undef CHECK
 #undef SRC_START
index 0eef3b735ca8344199e37671def23fccf582b1df..cc7f42f3847e71688db1c9d921df5a683549075c 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id: t_imm_api.c,v 1.40 2003/03/31 18:19:56 brianp Exp $ */
-
 /*
  * Mesa 3-D graphics library
  * Version:  5.1
@@ -405,7 +403,8 @@ _tnl_End(void)
  */
 #define CHECK_ATTRIB_ARRAY(IM, ATTR)                                   \
    if (!IM->Attrib[ATTR]) {                                            \
-      IM->Attrib[ATTR] = _mesa_malloc(IMM_SIZE * 4 * sizeof(GLfloat)); \
+      IM->Attrib[ATTR] =                                               \
+         (GLfloat (*)[4]) _mesa_malloc(IMM_SIZE * 4 * sizeof(GLfloat));        \
       if (!IM->Attrib[ATTR]) {                                         \
          GET_CURRENT_CONTEXT(ctx);                                     \
          _mesa_error(ctx, GL_OUT_OF_MEMORY, "glVertex/Normal/etc");    \
index 08b74a139b39805d477e69c49776459e52d92411..f9a3069a17139b1fba2e65294ccc8cfaadaaf368 100644 (file)
@@ -584,8 +584,9 @@ static void init_translate_elt(void)
 #undef CLASS
 #undef ARGS
 #undef CHECK
+#ifdef START
 #undef START
-
+#endif