replaced EXT_color_table with EXT_paletted_texture
authorBrian Paul <brian.paul@tungstengraphics.com>
Fri, 12 Nov 1999 23:38:42 +0000 (23:38 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Fri, 12 Nov 1999 23:38:42 +0000 (23:38 +0000)
src/mesa/main/dispatch.c
src/mesa/main/dlist.c
src/mesa/main/extensions.c

index e70d9a7..4ab62ae 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: dispatch.c,v 1.2 1999/11/11 17:50:04 brianp Exp $ */
+/* $Id: dispatch.c,v 1.3 1999/11/12 23:38:42 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -464,7 +464,7 @@ _mesa_init_exec_table(struct _glapi_table *exec)
    exec->SeparableFilter2D = _mesa_SeparableFilter2D;
 #endif
 
-#ifdef _GLAPI_EXT_color_table
+#ifdef _GLAPI_EXT_paletted_texture
    exec->ColorTableEXT = _mesa_ColorTableEXT;
    exec->ColorSubTableEXT = _mesa_ColorSubTableEXT;
    exec->GetColorTableEXT = _mesa_GetColorTableEXT;
index 10063f9..1babb47 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: dlist.c,v 1.17 1999/11/11 17:50:04 brianp Exp $ */
+/* $Id: dlist.c,v 1.18 1999/11/12 23:38:42 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -4380,7 +4380,7 @@ _mesa_init_dlist_table( struct _glapi_table *table )
    table->SeparableFilter2D = _mesa_SeparableFilter2D;
 #endif
 
-#ifdef _GLAPI_EXT_color_table
+#ifdef _GLAPI_EXT_paletted_texture
    table->ColorTableEXT = save_ColorTableEXT;
    table->ColorSubTableEXT = save_ColorSubTableEXT;
    table->GetColorTableEXT = _mesa_GetColorTableEXT;
index 98a7551..459cdb2 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: extensions.c,v 1.13 1999/11/12 02:07:56 brianp Exp $ */
+/* $Id: extensions.c,v 1.14 1999/11/12 23:38:42 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -308,7 +308,7 @@ void (*gl_get_proc_address( const GLubyte *procName ))()
       { "glTexSubImage3DEXT", (gl_function) glTexSubImage3DEXT },
       { "glCopyTexSubImage3DEXT", (gl_function) glCopyTexSubImage3DEXT },
 
-      /* GL_EXT_color_table */
+      /* GL_EXT_paletted_texture */
       { "glColorTableEXT", (gl_function) glColorTableEXT },
       { "glColorSubTableEXT", (gl_function) glColorSubTableEXT },
       { "glGetColorTableEXT", (gl_function) glGetColorTableEXT },