summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-08-08 16:53:12 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-08-08 16:53:12 +0000
commitea53a5b5abcd22abce33a577daafa298bac0ab15 (patch)
tree1d8cadf54f8bb66329af17659efe0dac89043245 /src/mesa
parent946ad2720a00696a59a253d81110ea96d397a463 (diff)
change GLvector3f to GLvector4f for normal transformation
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/x86/common_x86_macros.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/x86/common_x86_macros.h b/src/mesa/x86/common_x86_macros.h
index 34ef34d7dc..eff1f5b8e4 100644
--- a/src/mesa/x86/common_x86_macros.h
+++ b/src/mesa/x86/common_x86_macros.h
@@ -1,4 +1,4 @@
-/* $Id: common_x86_macros.h,v 1.1 2001/03/30 14:44:43 gareth Exp $ */
+/* $Id: common_x86_macros.h,v 1.2 2002/08/08 16:53:12 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -71,9 +71,9 @@ extern void _ASMAPI _mesa_##pfx##_transform_points##sz##_3d( XFORM_ARGS );
#define NORM_ARGS const GLmatrix *mat, \
GLfloat scale, \
- const GLvector3f *in, \
+ const GLvector4f *in, \
const GLfloat *lengths, \
- GLvector3f *dest
+ GLvector4f *dest
#define DECLARE_NORM_GROUP( pfx ) \
extern void _ASMAPI _mesa_##pfx##_rescale_normals( NORM_ARGS ); \