diff options
author | Brian Paul <[email protected]> | 2000-11-17 21:01:25 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-11-17 21:01:25 +0000 |
commit | 5a9026c65d260dc185e072163999f5d810015108 (patch) | |
tree | 250630676f5a7493292cb378def17f3105f046c7 /src/mesa/math/m_translate.h | |
parent | 9e83e8c790d8b612a7256c630f6ff7e063faaccb (diff) |
Minor header file changes to silence warnings.
Added _mesa_enable_sw_extensions(), called by software-only drivers
to enable all s/w-supported GL extensions.
Diffstat (limited to 'src/mesa/math/m_translate.h')
-rw-r--r-- | src/mesa/math/m_translate.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mesa/math/m_translate.h b/src/mesa/math/m_translate.h index 5c60b972ff5..a109dfa721b 100644 --- a/src/mesa/math/m_translate.h +++ b/src/mesa/math/m_translate.h @@ -1,4 +1,4 @@ -/* $Id: m_translate.h,v 1.1 2000/11/16 21:05:41 keithw Exp $ */ +/* $Id: m_translate.h,v 1.2 2000/11/17 21:01:49 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -28,6 +28,8 @@ #ifndef _M_TRANSLATE_H_ #define _M_TRANSLATE_H_ +#include "config.h" + typedef void (*trans_1f_func)(GLfloat *to, CONST void *ptr, @@ -86,7 +88,9 @@ extern trans_4ub_func gl_trans_4ub_tab[5][MAX_TYPES]; extern trans_4f_func gl_trans_4f_tab[5][MAX_TYPES]; -extern void gl_init_translate( void ); + +extern void +_math_init_translate( void ); #endif |