summaryrefslogtreecommitdiff
path: root/src/mesa/main/macros.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2006-10-18 22:38:13 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2006-10-18 22:38:13 +0000
commitff07d6de4c1db68bae1f652ed8c6146400ddebae (patch)
tree84ca834798d01fb637bc9840addc79fd2723acf3 /src/mesa/main/macros.h
parentfee08575cdb2d10c3692eaafb81c5dab15b854e5 (diff)
minor re-org, doxygen comments
Diffstat (limited to 'src/mesa/main/macros.h')
-rw-r--r--src/mesa/main/macros.h24
1 files changed, 13 insertions, 11 deletions
diff --git a/src/mesa/main/macros.h b/src/mesa/main/macros.h
index 672a2f8bd2..fbbcd4e269 100644
--- a/src/mesa/main/macros.h
+++ b/src/mesa/main/macros.h
@@ -5,9 +5,9 @@
/*
* Mesa 3-D graphics library
- * Version: 6.5
+ * Version: 6.5.2
*
- * Copyright (C) 1999-2005 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2006 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"),
@@ -511,7 +511,18 @@ do { \
(DST)[1] += S; \
} while (0)
+/** Assign scalers to short vectors */
+#define ASSIGN_2V( V, V0, V1 ) \
+do { \
+ V[0] = V0; \
+ V[1] = V1; \
+} while(0)
+
+/*@}*/
+
+/** \name Linear interpolation macros */
+/*@{*/
/**
* Linear interpolation
@@ -585,15 +596,6 @@ do { \
} \
} while(0)
-
-
-/** Assign scalers to short vectors */
-#define ASSIGN_2V( V, V0, V1 ) \
-do { \
- V[0] = V0; \
- V[1] = V1; \
-} while(0)
-
/*@}*/