mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 02:10:11 +01:00
glx: Don't use 'new' as a function parameter name
Using 'new' as a function parameter name prevents including glxclient.h the unit tests (future patch) that use the Google C++ Testing Framework. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
e6280c3ba9
commit
8a4b36de05
1 changed files with 1 additions and 1 deletions
|
|
@ -215,7 +215,7 @@ struct glx_context_vtable {
|
|||
void (*destroy)(struct glx_context *ctx);
|
||||
int (*bind)(struct glx_context *context, struct glx_context *old,
|
||||
GLXDrawable draw, GLXDrawable read);
|
||||
void (*unbind)(struct glx_context *context, struct glx_context *new);
|
||||
void (*unbind)(struct glx_context *context, struct glx_context *new_ctx);
|
||||
void (*wait_gl)(struct glx_context *ctx);
|
||||
void (*wait_x)(struct glx_context *ctx);
|
||||
void (*use_x_font)(struct glx_context *ctx,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue