minimize the number of DIVs
[mesa.git] / src / mesa / x86 / xform_args.h
index de3ce6855f7157a3581eb19c9b22b26ec752e85c..89a04205c1f9028651d4469e9c48afa3246ca8db 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: xform_args.h,v 1.3 2001/03/28 20:44:44 gareth Exp $ */
+/* $Id: xform_args.h,v 1.5 2002/10/29 20:28:58 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -29,7 +29,7 @@
  * FRAME_OFFSET to the number of bytes pushed onto the stack before
  * using the ARG_* argument macros.
  *
- * Gareth Hughes <gareth@valinux.com>
+ * Gareth Hughes
  */
 
 #ifndef __XFORM_ARGS_H__
  *
  * typedef void (*transform_func)( GLvector4f *to_vec,
  *                                const GLfloat m[16],
- *                                const GLvector4f *from_vec,
- *                                const GLubyte *clipmask,
- *                                const GLubyte flag );
+ *                                const GLvector4f *from_vec );
  */
 #define OFFSET_DEST    4
 #define OFFSET_MATRIX  8
 #define OFFSET_SOURCE  12
-#define OFFSET_CLIP    16
-#define OFFSET_FLAG    20
 
 #define ARG_DEST       REGOFF(FRAME_OFFSET+OFFSET_DEST, ESP)
 #define ARG_MATRIX     REGOFF(FRAME_OFFSET+OFFSET_MATRIX, ESP)
 #define ARG_SOURCE     REGOFF(FRAME_OFFSET+OFFSET_SOURCE, ESP)
-#define ARG_CLIP       REGOFF(FRAME_OFFSET+OFFSET_CLIP, ESP)
-#define ARG_FLAG       REGOFF(FRAME_OFFSET+OFFSET_FLAG, ESP)
 
 #endif