diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-03-03 17:45:21 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-03-03 17:45:21 +0000 |
commit | 8df3d8ae6c48cbbe649e8cfeebd8a99f983784f7 (patch) | |
tree | d5e50e35523cf73d4cdceeb3d7a652dfaf235a1f /src/mesa/main/dlist.c | |
parent | 4ee75bdab562d2125836668afab22e3726732c4c (diff) |
save ColorTable and ColorSubTable commands
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r-- | src/mesa/main/dlist.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 672773f124..fc4fbbd48b 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -1,4 +1,4 @@ -/* $Id: dlist.c,v 1.32 2000/02/25 03:55:39 keithw Exp $ */ +/* $Id: dlist.c,v 1.33 2000/03/03 17:45:21 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -4510,8 +4510,8 @@ _mesa_init_dlist_table( struct _glapi_table *table ) /* Not all are supported */ table->BlendColor = save_BlendColor; table->BlendEquation = save_BlendEquation; - table->ColorSubTable = _mesa_ColorSubTable; - table->ColorTable = _mesa_ColorTable; + table->ColorSubTable = save_ColorSubTable; + table->ColorTable = save_ColorTable; table->ColorTableParameterfv = _mesa_ColorTableParameterfv; table->ColorTableParameteriv = _mesa_ColorTableParameteriv; table->ConvolutionFilter1D = _mesa_ConvolutionFilter1D; |