diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2006-09-29 01:24:26 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2006-09-29 01:24:26 +0000 |
commit | 24edd9015951dd41898902b6c3973fe605e5871a (patch) | |
tree | cc50b14428811e07e5208a64b2c32ea0af3d021b /src/mesa/main/texstore.h | |
parent | bb4b378c602a7a3f8c6453ecf3ce4bd1dbdb0c9a (diff) |
Move mipmap generation functions, texture scaling functions into new
mipmap.c file.
Diffstat (limited to 'src/mesa/main/texstore.h')
-rw-r--r-- | src/mesa/main/texstore.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/mesa/main/texstore.h b/src/mesa/main/texstore.h index 7dc82a51c8..f67defc503 100644 --- a/src/mesa/main/texstore.h +++ b/src/mesa/main/texstore.h @@ -201,27 +201,6 @@ _mesa_store_compressed_texsubimage3d(GLcontext *ctx, GLenum target, extern void -_mesa_generate_mipmap(GLcontext *ctx, GLenum target, - const struct gl_texture_unit *texUnit, - struct gl_texture_object *texObj); - - -extern void -_mesa_rescale_teximage2d(GLuint bytesPerPixel, - GLuint srcStrideInPixels, - GLuint dstRowStride, - GLint srcWidth, GLint srcHeight, - GLint dstWidth, GLint dstHeight, - const GLvoid *srcImage, GLvoid *dstImage); - -extern void -_mesa_upscale_teximage2d(GLsizei inWidth, GLsizei inHeight, - GLsizei outWidth, GLsizei outHeight, - GLint comps, const GLchan *src, GLint srcRowStride, - GLchan *dest); - - -extern void _mesa_get_teximage(GLcontext *ctx, GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels, struct gl_texture_object *texObj, |