glapi: move legacy imaging functions to the end of dispatch tables

Reviewed-by: Adam Jackson <ajax@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33634>
This commit is contained in:
Marek Olšák 2025-02-21 17:48:25 -05:00 committed by Marge Bot
parent 1fde49d50e
commit 02d22dd1f3

View file

@ -361,38 +361,6 @@ all_functions = [
"BlendColor",
"BlendEquation",
"DrawRangeElements",
"ColorTable",
"ColorTableParameterfv",
"ColorTableParameteriv",
"CopyColorTable",
"GetColorTable",
"GetColorTableParameterfv",
"GetColorTableParameteriv",
"ColorSubTable",
"CopyColorSubTable",
"ConvolutionFilter1D",
"ConvolutionFilter2D",
"ConvolutionParameterf",
"ConvolutionParameterfv",
"ConvolutionParameteri",
"ConvolutionParameteriv",
"CopyConvolutionFilter1D",
"CopyConvolutionFilter2D",
"GetConvolutionFilter",
"GetConvolutionParameterfv",
"GetConvolutionParameteriv",
"GetSeparableFilter",
"SeparableFilter2D",
"GetHistogram",
"GetHistogramParameterfv",
"GetHistogramParameteriv",
"GetMinmax",
"GetMinmaxParameterfv",
"GetMinmaxParameteriv",
"Histogram",
"Minmax",
"ResetHistogram",
"ResetMinmax",
"TexImage3D",
"TexSubImage3D",
"CopyTexSubImage3D",
@ -864,19 +832,14 @@ all_functions = [
"ViewportIndexedf",
"ViewportIndexedfv",
"GetGraphicsResetStatusARB",
"GetnColorTableARB",
"GetnCompressedTexImageARB",
"GetnConvolutionFilterARB",
"GetnHistogramARB",
"GetnMapdvARB",
"GetnMapfvARB",
"GetnMapivARB",
"GetnMinmaxARB",
"GetnPixelMapfvARB",
"GetnPixelMapuivARB",
"GetnPixelMapusvARB",
"GetnPolygonStippleARB",
"GetnSeparableFilterARB",
"GetnTexImageARB",
"GetnUniformdvARB",
"GetnUniformfvARB",
@ -1663,6 +1626,45 @@ all_functions = [
"FramebufferTextureMultiviewOVR",
"NamedFramebufferTextureMultiviewOVR",
"FramebufferTextureMultisampleMultiviewOVR",
# Keep these last. They are never used by any app.
"ColorTable",
"ColorTableParameterfv",
"ColorTableParameteriv",
"CopyColorTable",
"GetColorTable",
"GetColorTableParameterfv",
"GetColorTableParameteriv",
"ColorSubTable",
"CopyColorSubTable",
"ConvolutionFilter1D",
"ConvolutionFilter2D",
"ConvolutionParameterf",
"ConvolutionParameterfv",
"ConvolutionParameteri",
"ConvolutionParameteriv",
"CopyConvolutionFilter1D",
"CopyConvolutionFilter2D",
"GetConvolutionFilter",
"GetConvolutionParameterfv",
"GetConvolutionParameteriv",
"GetSeparableFilter",
"SeparableFilter2D",
"GetHistogram",
"GetHistogramParameterfv",
"GetHistogramParameteriv",
"GetMinmax",
"GetMinmaxParameterfv",
"GetMinmaxParameteriv",
"Histogram",
"Minmax",
"ResetHistogram",
"ResetMinmax",
"GetnColorTableARB",
"GetnConvolutionFilterARB",
"GetnHistogramARB",
"GetnMinmaxARB",
"GetnSeparableFilterARB",
]
offsets = {}