diff options
author | Brian Paul <[email protected]> | 2000-04-07 16:27:26 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-04-07 16:27:26 +0000 |
commit | 2b2e925ea4a5652b0ab73b1efbce345a42663842 (patch) | |
tree | 9824128cf7662c51830bd3b5a0b74721a071a881 /src/mesa/main/state.c | |
parent | ede4887b1650b18b3a2db3f175fcc33826bbab4d (diff) |
added GL_SGIX/SGIS_pixel_texture extension
Diffstat (limited to 'src/mesa/main/state.c')
-rw-r--r-- | src/mesa/main/state.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index 5c3b316f89c..990cd4d31c4 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -1,4 +1,4 @@ -/* $Id: state.c,v 1.6 2000/04/01 05:42:06 brianp Exp $ */ +/* $Id: state.c,v 1.7 2000/04/07 16:27:26 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -64,6 +64,7 @@ #include "mmath.h" #include "pipeline.h" #include "pixel.h" +#include "pixeltex.h" #include "points.h" #include "polygon.h" #include "quads.h" @@ -525,6 +526,17 @@ _mesa_init_exec_table(struct _glapi_table *exec) exec->GetColorTableParameterfvEXT = _mesa_GetColorTableParameterfv; exec->GetColorTableParameterivEXT = _mesa_GetColorTableParameteriv; + /* GL_SGIX_pixel_texture */ + exec->PixelTexGenSGIX = _mesa_PixelTexGenSGIX; + + /* GL_SGIS_pixel_texture */ + exec->PixelTexGenParameteriSGIS = _mesa_PixelTexGenParameteriSGIS; + exec->PixelTexGenParameterivSGIS = _mesa_PixelTexGenParameterivSGIS; + exec->PixelTexGenParameterfSGIS = _mesa_PixelTexGenParameterfSGIS; + exec->PixelTexGenParameterfvSGIS = _mesa_PixelTexGenParameterfvSGIS; + exec->GetPixelTexGenParameterivSGIS = _mesa_GetPixelTexGenParameterivSGIS; + exec->GetPixelTexGenParameterfvSGIS = _mesa_GetPixelTexGenParameterfvSGIS; + /* GL_EXT_compiled_vertex_array */ exec->LockArraysEXT = _mesa_LockArraysEXT; exec->UnlockArraysEXT = _mesa_UnlockArraysEXT; |