diff options
author | Ian Romanick <[email protected]> | 2012-09-05 08:12:18 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2012-09-28 08:19:53 -0700 |
commit | 3ef9e43865f38e9c8c5681768645513ce26e0488 (patch) | |
tree | 6cfd96e8b78abab6233b92a90bf22fd5df2501ea | |
parent | ee77061277b640d78befb43c26a3ffbe227e9244 (diff) |
mesa: Pass GL context to _mesa_create_save_table
This isn't used by this patch, but it will be necessary for several
follow-on patches. Separating this out will make it easier to reorder
patches later.
NOTE: This is a candidate for the 9.0 branch
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
-rw-r--r-- | src/mesa/main/context.c | 2 | ||||
-rw-r--r-- | src/mesa/main/dlist.c | 2 | ||||
-rw-r--r-- | src/mesa/main/dlist.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index abce52e5848..c6880a4b9e4 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -995,7 +995,7 @@ _mesa_initialize_context(struct gl_context *ctx, switch (ctx->API) { case API_OPENGL: - ctx->Save = _mesa_create_save_table(); + ctx->Save = _mesa_create_save_table(ctx); if (!ctx->Save) { _mesa_reference_shared_state(ctx, &ctx->Shared, NULL); free(ctx->Exec); diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index b663e364c3a..e3c6a86b019 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -9875,7 +9875,7 @@ exec_MultiModeDrawElementsIBM(const GLenum * mode, * struct. */ struct _glapi_table * -_mesa_create_save_table(void) +_mesa_create_save_table(const struct gl_context *ctx) { struct _glapi_table *table; diff --git a/src/mesa/main/dlist.h b/src/mesa/main/dlist.h index 992a089f188..137245161d2 100644 --- a/src/mesa/main/dlist.h +++ b/src/mesa/main/dlist.h @@ -61,7 +61,7 @@ extern void _mesa_delete_list(struct gl_context *ctx, struct gl_display_list *dl extern void _mesa_save_vtxfmt_init( GLvertexformat *vfmt ); -extern struct _glapi_table *_mesa_create_save_table(void); +extern struct _glapi_table *_mesa_create_save_table(const struct gl_context *); extern void _mesa_install_dlist_vtxfmt(struct _glapi_table *disp, const GLvertexformat *vfmt); |