diff options
author | Brian Paul <[email protected]> | 2005-11-11 15:33:36 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-11-11 15:33:36 +0000 |
commit | 77ee31930a1b0cc7766939415f4f04ed6a1fa4ac (patch) | |
tree | 65a2b8fdc6bea5561ea7eb5c280bdce1ceef7d54 /src/mesa/main/teximage.h | |
parent | 0325bc6359833fc51444618d7b1e188fca693eba (diff) |
Make _mesa_is_proxy_texture() non-static and use in a few more places.
Use COPY_4FV() where possible.
Added some comments, clean-ups.
Diffstat (limited to 'src/mesa/main/teximage.h')
-rw-r--r-- | src/mesa/main/teximage.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mesa/main/teximage.h b/src/mesa/main/teximage.h index 45c851e5c88..410789fe046 100644 --- a/src/mesa/main/teximage.h +++ b/src/mesa/main/teximage.h @@ -5,7 +5,7 @@ /* * Mesa 3-D graphics library - * Version: 6.3 + * Version: 6.5 * * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. * @@ -49,6 +49,10 @@ extern GLint _mesa_base_tex_format( GLcontext *ctx, GLint internalFormat ); +extern GLboolean +_mesa_is_proxy_texture(GLenum target); + + extern struct gl_texture_image * _mesa_new_texture_image( GLcontext *ctx ); @@ -56,7 +60,6 @@ _mesa_new_texture_image( GLcontext *ctx ); extern void _mesa_delete_texture_image( GLcontext *ctx, struct gl_texture_image *teximage ); - extern void _mesa_free_texture_image_data( GLcontext *ctx, struct gl_texture_image *texImage ); |