diff options
author | Timothy Arceri <[email protected]> | 2017-04-06 14:43:32 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-04-07 08:03:02 +1000 |
commit | 93d7014c1d522616eceac3addaebba17244cd353 (patch) | |
tree | 16884b6915609fe6d2a39237d404b5f406971403 /src/mesa/main/texobj.h | |
parent | 31cb6fd0a3069ac7c03c1ce28b2f24d8bb9a4154 (diff) |
mesa: stop abstracting texture object hashtable locking
This doesn't do anything useful so just remove it.
Reviewed-by: Iago Toral Quiroga <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/mesa/main/texobj.h')
-rw-r--r-- | src/mesa/main/texobj.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mesa/main/texobj.h b/src/mesa/main/texobj.h index 87767638689..a9db1675e01 100644 --- a/src/mesa/main/texobj.h +++ b/src/mesa/main/texobj.h @@ -54,12 +54,6 @@ _mesa_lookup_texture(struct gl_context *ctx, GLuint id); extern struct gl_texture_object * _mesa_lookup_texture_err(struct gl_context *ctx, GLuint id, const char* func); -extern void -_mesa_begin_texture_lookups(struct gl_context *ctx); - -extern void -_mesa_end_texture_lookups(struct gl_context *ctx); - extern struct gl_texture_object * _mesa_lookup_texture_locked(struct gl_context *ctx, GLuint id); |