mesa: make _mesa_validate_sync() non-static

Signed-off-by: Timothy Arceri <t_arceri@yahoo.com.au>

Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
Timothy Arceri 2013-08-26 17:45:06 +10:00 committed by Brian Paul
parent 6d8dd59cf5
commit 21b5bf712b
2 changed files with 4 additions and 1 deletions

View file

@ -161,7 +161,7 @@ _mesa_free_sync_data(struct gl_context *ctx)
}
static int
int
_mesa_validate_sync(struct gl_context *ctx, struct gl_sync_object *syncObj)
{
return (syncObj != NULL)

View file

@ -53,6 +53,9 @@ _mesa_ref_sync_object(struct gl_context *ctx, struct gl_sync_object *syncObj);
extern void
_mesa_unref_sync_object(struct gl_context *ctx, struct gl_sync_object *syncObj);
extern int
_mesa_validate_sync(struct gl_context *ctx, struct gl_sync_object *syncObj);
extern GLboolean GLAPIENTRY
_mesa_IsSync(GLsync sync);