From cd96388857255711c4e33e7d2626f199d3810d15 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 10 Dec 1999 20:01:06 +0000 Subject: implemented GL_ARB_tranpose_matrix --- src/mesa/glapi/glapitable.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/mesa/glapi/glapitable.h') diff --git a/src/mesa/glapi/glapitable.h b/src/mesa/glapi/glapitable.h index fb9555e421..84273a5b1a 100644 --- a/src/mesa/glapi/glapitable.h +++ b/src/mesa/glapi/glapitable.h @@ -1,4 +1,4 @@ -/* $Id: glapitable.h,v 1.2 1999/11/27 21:30:10 brianp Exp $ */ +/* $Id: glapitable.h,v 1.3 1999/12/10 20:01:06 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -63,6 +63,7 @@ #define _GLAPI_INGR_blend_func_separate 1 #define _GLAPI_MESA_window_pos 1 #define _GLAPI_MESA_resize_buffers 1 +#define _GLAPI_ARB_transpose_matrix 1 @@ -553,6 +554,12 @@ struct _glapi_table void (*ResizeBuffersMESA)(void); #endif +#ifdef _GLAPI_ARB_transpose_matrix + void (*LoadTransposeMatrixdARB)(const GLdouble m[16]); + void (*LoadTransposeMatrixfARB)(const GLfloat m[16]); + void (*MultTransposeMatrixdARB)(const GLdouble m[16]); + void (*MultTransposeMatrixfARB)(const GLfloat m[16]); +#endif void *ExtensionFuncs[_GLAPI_EXTRA_SLOTS]; }; -- cgit v1.2.3