diff options
author | Brian Paul <[email protected]> | 2003-03-31 18:19:56 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-03-31 18:19:56 +0000 |
commit | 05b26510668fc1e5039c6c9088247f9b3c508cb7 (patch) | |
tree | 71a4fea8cdef352f9265b9081adf866e82925dc4 /src/mesa/tnl/t_imm_fixup.h | |
parent | 55b0ff2193ab772249442712381908f6503508e5 (diff) |
reduce memory needed for vertex attributes (allocate on demand)
Diffstat (limited to 'src/mesa/tnl/t_imm_fixup.h')
-rw-r--r-- | src/mesa/tnl/t_imm_fixup.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/tnl/t_imm_fixup.h b/src/mesa/tnl/t_imm_fixup.h index 806933aa68a..7ffcb1ebc8e 100644 --- a/src/mesa/tnl/t_imm_fixup.h +++ b/src/mesa/tnl/t_imm_fixup.h @@ -1,10 +1,10 @@ -/* $Id: t_imm_fixup.h,v 1.6 2001/06/04 16:09:28 keithw Exp $ */ +/* $Id: t_imm_fixup.h,v 1.7 2003/03/31 18:19:57 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.5 + * Version: 5.1 * - * Copyright (C) 1999-2001 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"), @@ -40,10 +40,10 @@ extern void _tnl_fixup_1f( GLfloat *data, GLuint flag[], extern void _tnl_fixup_1ui( GLuint *data, GLuint flag[], GLuint start, GLuint match ); -extern void _tnl_fixup_3f( float data[][3], GLuint flag[], +extern void _tnl_fixup_3f( GLfloat data[][3], const GLuint flag[], GLuint start, GLuint match ); -extern void _tnl_fixup_4f( GLfloat data[][4], GLuint flag[], +extern void _tnl_fixup_4f( GLfloat data[][4], const GLuint flag[], GLuint start, GLuint match ); extern void _tnl_fixup_input( GLcontext *ctx, struct immediate *IM ); |