a few dispatch pointers weren't set (glGenTexturesEXT for example)

This commit is contained in:
Brian Paul
2002-11-06 15:16:23 +00:00
parent 0d88328c7e
commit f48216ad0f
2 changed files with 36 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
/* $Id: dlist.c,v 1.99 2002/10/24 23:57:20 brianp Exp $ */ /* $Id: dlist.c,v 1.100 2002/11/06 15:16:23 brianp Exp $ */
/* /*
* Mesa 3-D graphics library * Mesa 3-D graphics library
* Version: 4.1 * Version: 5.0
* *
* Copyright (C) 1999-2002 Brian Paul All Rights Reserved. * Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
* *
@@ -6015,6 +6015,7 @@ _mesa_init_dlist_table( struct _glapi_table *table, GLuint tableSize )
/* GL 1.1 */ /* GL 1.1 */
table->AreTexturesResident = exec_AreTexturesResident; table->AreTexturesResident = exec_AreTexturesResident;
table->AreTexturesResidentEXT = exec_AreTexturesResident;
table->BindTexture = save_BindTexture; table->BindTexture = save_BindTexture;
table->ColorPointer = exec_ColorPointer; table->ColorPointer = exec_ColorPointer;
table->CopyTexImage1D = save_CopyTexImage1D; table->CopyTexImage1D = save_CopyTexImage1D;
@@ -6026,10 +6027,12 @@ _mesa_init_dlist_table( struct _glapi_table *table, GLuint tableSize )
table->EdgeFlagPointer = exec_EdgeFlagPointer; table->EdgeFlagPointer = exec_EdgeFlagPointer;
table->EnableClientState = exec_EnableClientState; table->EnableClientState = exec_EnableClientState;
table->GenTextures = exec_GenTextures; table->GenTextures = exec_GenTextures;
table->GenTexturesEXT = exec_GenTextures;
table->GetPointerv = exec_GetPointerv; table->GetPointerv = exec_GetPointerv;
table->IndexPointer = exec_IndexPointer; table->IndexPointer = exec_IndexPointer;
table->InterleavedArrays = exec_InterleavedArrays; table->InterleavedArrays = exec_InterleavedArrays;
table->IsTexture = exec_IsTexture; table->IsTexture = exec_IsTexture;
table->IsTextureEXT = exec_IsTexture;
table->NormalPointer = exec_NormalPointer; table->NormalPointer = exec_NormalPointer;
table->PopClientAttrib = exec_PopClientAttrib; table->PopClientAttrib = exec_PopClientAttrib;
table->PrioritizeTextures = save_PrioritizeTextures; table->PrioritizeTextures = save_PrioritizeTextures;
@@ -6063,18 +6066,31 @@ _mesa_init_dlist_table( struct _glapi_table *table, GLuint tableSize )
table->CopyConvolutionFilter1D = exec_CopyConvolutionFilter1D; table->CopyConvolutionFilter1D = exec_CopyConvolutionFilter1D;
table->CopyConvolutionFilter2D = exec_CopyConvolutionFilter2D; table->CopyConvolutionFilter2D = exec_CopyConvolutionFilter2D;
table->GetColorTable = exec_GetColorTable; table->GetColorTable = exec_GetColorTable;
table->GetColorTableEXT = exec_GetColorTable;
table->GetColorTableParameterfv = exec_GetColorTableParameterfv; table->GetColorTableParameterfv = exec_GetColorTableParameterfv;
table->GetColorTableParameterfvEXT = exec_GetColorTableParameterfv;
table->GetColorTableParameteriv = exec_GetColorTableParameteriv; table->GetColorTableParameteriv = exec_GetColorTableParameteriv;
table->GetColorTableParameterivEXT = exec_GetColorTableParameteriv;
table->GetConvolutionFilter = exec_GetConvolutionFilter; table->GetConvolutionFilter = exec_GetConvolutionFilter;
table->GetConvolutionFilterEXT = exec_GetConvolutionFilter;
table->GetConvolutionParameterfv = exec_GetConvolutionParameterfv; table->GetConvolutionParameterfv = exec_GetConvolutionParameterfv;
table->GetConvolutionParameterfvEXT = exec_GetConvolutionParameterfv;
table->GetConvolutionParameteriv = exec_GetConvolutionParameteriv; table->GetConvolutionParameteriv = exec_GetConvolutionParameteriv;
table->GetConvolutionParameterivEXT = exec_GetConvolutionParameteriv;
table->GetHistogram = exec_GetHistogram; table->GetHistogram = exec_GetHistogram;
table->GetHistogramEXT = exec_GetHistogram;
table->GetHistogramParameterfv = exec_GetHistogramParameterfv; table->GetHistogramParameterfv = exec_GetHistogramParameterfv;
table->GetHistogramParameterfvEXT = exec_GetHistogramParameterfv;
table->GetHistogramParameteriv = exec_GetHistogramParameteriv; table->GetHistogramParameteriv = exec_GetHistogramParameteriv;
table->GetHistogramParameterivEXT = exec_GetHistogramParameteriv;
table->GetMinmax = exec_GetMinmax; table->GetMinmax = exec_GetMinmax;
table->GetMinmaxEXT = exec_GetMinmax;
table->GetMinmaxParameterfv = exec_GetMinmaxParameterfv; table->GetMinmaxParameterfv = exec_GetMinmaxParameterfv;
table->GetMinmaxParameterfvEXT = exec_GetMinmaxParameterfv;
table->GetMinmaxParameteriv = exec_GetMinmaxParameteriv; table->GetMinmaxParameteriv = exec_GetMinmaxParameteriv;
table->GetMinmaxParameterivEXT = exec_GetMinmaxParameteriv;
table->GetSeparableFilter = exec_GetSeparableFilter; table->GetSeparableFilter = exec_GetSeparableFilter;
table->GetSeparableFilterEXT = exec_GetSeparableFilter;
table->Histogram = save_Histogram; table->Histogram = save_Histogram;
table->Minmax = save_Minmax; table->Minmax = save_Minmax;
table->ResetHistogram = save_ResetHistogram; table->ResetHistogram = save_ResetHistogram;

View File

@@ -1,8 +1,8 @@
/* $Id: state.c,v 1.96 2002/10/24 23:57:21 brianp Exp $ */ /* $Id: state.c,v 1.97 2002/11/06 15:16:23 brianp Exp $ */
/* /*
* Mesa 3-D graphics library * Mesa 3-D graphics library
* Version: 4.1 * Version: 5.0
* *
* Copyright (C) 1999-2002 Brian Paul All Rights Reserved. * Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
* *
@@ -294,6 +294,7 @@ _mesa_init_exec_table(struct _glapi_table *exec, GLuint tableSize)
/* 1.1 */ /* 1.1 */
exec->AreTexturesResident = _mesa_AreTexturesResident; exec->AreTexturesResident = _mesa_AreTexturesResident;
exec->AreTexturesResidentEXT = _mesa_AreTexturesResident;
exec->BindTexture = _mesa_BindTexture; exec->BindTexture = _mesa_BindTexture;
exec->ColorPointer = _mesa_ColorPointer; exec->ColorPointer = _mesa_ColorPointer;
exec->CopyTexImage1D = _mesa_CopyTexImage1D; exec->CopyTexImage1D = _mesa_CopyTexImage1D;
@@ -305,10 +306,12 @@ _mesa_init_exec_table(struct _glapi_table *exec, GLuint tableSize)
exec->EdgeFlagPointer = _mesa_EdgeFlagPointer; exec->EdgeFlagPointer = _mesa_EdgeFlagPointer;
exec->EnableClientState = _mesa_EnableClientState; exec->EnableClientState = _mesa_EnableClientState;
exec->GenTextures = _mesa_GenTextures; exec->GenTextures = _mesa_GenTextures;
exec->GenTexturesEXT = _mesa_GenTextures;
exec->GetPointerv = _mesa_GetPointerv; exec->GetPointerv = _mesa_GetPointerv;
exec->IndexPointer = _mesa_IndexPointer; exec->IndexPointer = _mesa_IndexPointer;
exec->InterleavedArrays = _mesa_InterleavedArrays; exec->InterleavedArrays = _mesa_InterleavedArrays;
exec->IsTexture = _mesa_IsTexture; exec->IsTexture = _mesa_IsTexture;
exec->IsTextureEXT = _mesa_IsTexture;
exec->NormalPointer = _mesa_NormalPointer; exec->NormalPointer = _mesa_NormalPointer;
exec->PopClientAttrib = _mesa_PopClientAttrib; exec->PopClientAttrib = _mesa_PopClientAttrib;
exec->PrioritizeTextures = _mesa_PrioritizeTextures; exec->PrioritizeTextures = _mesa_PrioritizeTextures;
@@ -341,18 +344,31 @@ _mesa_init_exec_table(struct _glapi_table *exec, GLuint tableSize)
exec->CopyConvolutionFilter1D = _mesa_CopyConvolutionFilter1D; exec->CopyConvolutionFilter1D = _mesa_CopyConvolutionFilter1D;
exec->CopyConvolutionFilter2D = _mesa_CopyConvolutionFilter2D; exec->CopyConvolutionFilter2D = _mesa_CopyConvolutionFilter2D;
exec->GetColorTable = _mesa_GetColorTable; exec->GetColorTable = _mesa_GetColorTable;
exec->GetColorTableEXT = _mesa_GetColorTable;
exec->GetColorTableParameterfv = _mesa_GetColorTableParameterfv; exec->GetColorTableParameterfv = _mesa_GetColorTableParameterfv;
exec->GetColorTableParameterfvEXT = _mesa_GetColorTableParameterfv;
exec->GetColorTableParameteriv = _mesa_GetColorTableParameteriv; exec->GetColorTableParameteriv = _mesa_GetColorTableParameteriv;
exec->GetColorTableParameterivEXT = _mesa_GetColorTableParameteriv;
exec->GetConvolutionFilter = _mesa_GetConvolutionFilter; exec->GetConvolutionFilter = _mesa_GetConvolutionFilter;
exec->GetConvolutionFilterEXT = _mesa_GetConvolutionFilter;
exec->GetConvolutionParameterfv = _mesa_GetConvolutionParameterfv; exec->GetConvolutionParameterfv = _mesa_GetConvolutionParameterfv;
exec->GetConvolutionParameterfvEXT = _mesa_GetConvolutionParameterfv;
exec->GetConvolutionParameteriv = _mesa_GetConvolutionParameteriv; exec->GetConvolutionParameteriv = _mesa_GetConvolutionParameteriv;
exec->GetConvolutionParameterivEXT = _mesa_GetConvolutionParameteriv;
exec->GetHistogram = _mesa_GetHistogram; exec->GetHistogram = _mesa_GetHistogram;
exec->GetHistogramEXT = _mesa_GetHistogram;
exec->GetHistogramParameterfv = _mesa_GetHistogramParameterfv; exec->GetHistogramParameterfv = _mesa_GetHistogramParameterfv;
exec->GetHistogramParameterfvEXT = _mesa_GetHistogramParameterfv;
exec->GetHistogramParameteriv = _mesa_GetHistogramParameteriv; exec->GetHistogramParameteriv = _mesa_GetHistogramParameteriv;
exec->GetHistogramParameterivEXT = _mesa_GetHistogramParameteriv;
exec->GetMinmax = _mesa_GetMinmax; exec->GetMinmax = _mesa_GetMinmax;
exec->GetMinmaxEXT = _mesa_GetMinmax;
exec->GetMinmaxParameterfv = _mesa_GetMinmaxParameterfv; exec->GetMinmaxParameterfv = _mesa_GetMinmaxParameterfv;
exec->GetMinmaxParameterfvEXT = _mesa_GetMinmaxParameterfv;
exec->GetMinmaxParameteriv = _mesa_GetMinmaxParameteriv; exec->GetMinmaxParameteriv = _mesa_GetMinmaxParameteriv;
exec->GetMinmaxParameterivEXT = _mesa_GetMinmaxParameteriv;
exec->GetSeparableFilter = _mesa_GetSeparableFilter; exec->GetSeparableFilter = _mesa_GetSeparableFilter;
exec->GetSeparableFilterEXT = _mesa_GetSeparableFilter;
exec->Histogram = _mesa_Histogram; exec->Histogram = _mesa_Histogram;
exec->Minmax = _mesa_Minmax; exec->Minmax = _mesa_Minmax;
exec->ResetHistogram = _mesa_ResetHistogram; exec->ResetHistogram = _mesa_ResetHistogram;
@@ -519,7 +535,6 @@ _mesa_init_exec_table(struct _glapi_table *exec, GLuint tableSize)
/* ARB 14. GL_ARB_point_parameters */ /* ARB 14. GL_ARB_point_parameters */
/* reuse EXT_point_parameters functions */ /* reuse EXT_point_parameters functions */
} }