summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/teximage.h
diff options
context:
space:
mode:
authorLaura Ekstrand <[email protected]>2014-12-04 10:44:25 -0800
committerLaura Ekstrand <[email protected]>2015-01-08 11:37:28 -0800
commitd7528fce5abed95668ff97c46e68c94a08bbe30c (patch)
tree8abdc79c2adce89b74c022331764003dbc401496 /src/mesa/main/teximage.h
parent838ef5b7816bf7a2fbde25b602b5150e92398c0a (diff)
main: Moved _mesa_lock_texture and _mesa_unlock_texture to texobj.h from teximage.h.
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/main/teximage.h')
-rw-r--r--src/mesa/main/teximage.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/mesa/main/teximage.h b/src/mesa/main/teximage.h
index 04560504627..c3ecfe71029 100644
--- a/src/mesa/main/teximage.h
+++ b/src/mesa/main/teximage.h
@@ -169,24 +169,6 @@ _mesa_legal_texture_base_format_for_target(struct gl_context *ctx,
unsigned dimensions,
const char *caller);
-/**
- * Lock a texture for updating. See also _mesa_lock_context_textures().
- */
-static inline void
-_mesa_lock_texture(struct gl_context *ctx, struct gl_texture_object *texObj)
-{
- mtx_lock(&ctx->Shared->TexMutex);
- ctx->Shared->TextureStateStamp++;
- (void) texObj;
-}
-
-static inline void
-_mesa_unlock_texture(struct gl_context *ctx, struct gl_texture_object *texObj)
-{
- (void) texObj;
- mtx_unlock(&ctx->Shared->TexMutex);
-}
-
/*@}*/