diff options
author | Mathias Fröhlich <[email protected]> | 2019-04-03 13:28:57 +0200 |
---|---|---|
committer | Mathias Fröhlich <[email protected]> | 2019-05-04 07:40:35 +0200 |
commit | 0ed7603d97bb7bab719dc28eac291fbfb8160d2e (patch) | |
tree | 10e67996f534b0141dbbd6dcb836e6641440986b /src/mesa/main/api_arrayelt.h | |
parent | 3b6f32907f292efd8d3eb25dc1573ff30e437a0c (diff) |
mesa: Remove the _glapi_table argument from _mesa_array_element.
The value is now unused.
Reviewed-by: Brian Paul <[email protected]>
Signed-off-by: Mathias Fröhlich <[email protected]>
Diffstat (limited to 'src/mesa/main/api_arrayelt.h')
-rw-r--r-- | src/mesa/main/api_arrayelt.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/main/api_arrayelt.h b/src/mesa/main/api_arrayelt.h index eea229f0487..6c2ece81134 100644 --- a/src/mesa/main/api_arrayelt.h +++ b/src/mesa/main/api_arrayelt.h @@ -32,8 +32,7 @@ struct _glapi_table; -extern void _mesa_array_element(struct gl_context *ctx, - struct _glapi_table *disp, GLint elt); +extern void _mesa_array_element(struct gl_context *ctx, GLint elt); extern void GLAPIENTRY _ae_ArrayElement( GLint elt ); extern void |