diff options
author | Brian Paul <[email protected]> | 2014-04-09 19:28:47 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-04-10 07:53:11 -0600 |
commit | 3b323c4d40746b4f9654c727e1887462df8591cb (patch) | |
tree | 9acfc89b112b092b9429b2c74014163dcc60c536 /src/mesa/main/vdpau.c | |
parent | 00f31bdd32ee0e2e3ccb4d1c93a44c585b668d6f (diff) |
mesa: s/FREE/free/ in vdpau code
Reviewed-by: Reviewed-by: Jakob Bornecrantz <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Christian König <[email protected]>
Diffstat (limited to 'src/mesa/main/vdpau.c')
-rw-r--r-- | src/mesa/main/vdpau.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/main/vdpau.c b/src/mesa/main/vdpau.c index c2cf20664c6..d9745939391 100644 --- a/src/mesa/main/vdpau.c +++ b/src/mesa/main/vdpau.c @@ -88,7 +88,7 @@ unregister_surface(struct set_entry *entry) } _mesa_set_remove(ctx->vdpSurfaces, entry); - FREE(surf); + free(surf); } void GLAPIENTRY @@ -145,7 +145,7 @@ register_surface(struct gl_context *ctx, GLboolean isOutput, if (tex->Immutable) { _mesa_unlock_texture(ctx, tex); - FREE(surf); + free(surf); _mesa_error(ctx, GL_INVALID_OPERATION, "VDPAURegisterSurfaceNV(texture is immutable)"); return (GLintptr)NULL; @@ -155,7 +155,7 @@ register_surface(struct gl_context *ctx, GLboolean isOutput, tex->Target = target; else if (tex->Target != target) { _mesa_unlock_texture(ctx, tex); - FREE(surf); + free(surf); _mesa_error(ctx, GL_INVALID_OPERATION, "VDPAURegisterSurfaceNV(target mismatch)"); return (GLintptr)NULL; @@ -254,7 +254,7 @@ _mesa_VDPAUUnregisterSurfaceNV(GLintptr surface) } _mesa_set_remove(ctx->vdpSurfaces, entry); - FREE(surf); + free(surf); } void GLAPIENTRY |