diff options
author | Laura Ekstrand <[email protected]> | 2014-12-04 14:10:23 -0800 |
---|---|---|
committer | Laura Ekstrand <[email protected]> | 2015-01-08 11:37:28 -0800 |
commit | 35371d65607780a2fc63a65cba2d34562538ff96 (patch) | |
tree | a8b668192b778788cf2ce656b12958d9ca6b684d /src/mesa/main/texobj.h | |
parent | d7528fce5abed95668ff97c46e68c94a08bbe30c (diff) |
main: Moved _mesa_get_current_tex_object from teximage.c to texobj.c.
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/main/texobj.h')
-rw-r--r-- | src/mesa/main/texobj.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/texobj.h b/src/mesa/main/texobj.h index 51bdbbdc5ea..456dcf9ed3d 100644 --- a/src/mesa/main/texobj.h +++ b/src/mesa/main/texobj.h @@ -64,6 +64,9 @@ extern struct gl_texture_object * _mesa_lookup_texture_locked(struct gl_context *ctx, GLuint id); extern struct gl_texture_object * +_mesa_get_current_tex_object(struct gl_context *ctx, GLenum target); + +extern struct gl_texture_object * _mesa_new_texture_object( struct gl_context *ctx, GLuint name, GLenum target ); extern void |