From 43bc364af4752ae8c673aa9fff8009f8a228b7ef Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 7 Feb 2001 03:53:07 +0000 Subject: remove unused functions --- src/mesa/main/texstore.c | 45 +-------------------------------------------- 1 file changed, 1 insertion(+), 44 deletions(-) diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c index ea85b503db..52f6c3f89a 100644 --- a/src/mesa/main/texstore.c +++ b/src/mesa/main/texstore.c @@ -1,4 +1,4 @@ -/* $Id: texstore.c,v 1.2 2001/02/07 03:27:41 brianp Exp $ */ +/* $Id: texstore.c,v 1.3 2001/02/07 03:53:07 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -389,49 +389,6 @@ set_teximage_component_sizes( struct gl_texture_image *texImage ) } -/* - * Compute log base 2 of n. - * If n isn't an exact power of two return -1. - * If n<0 return -1. - */ -static int -logbase2( int n ) -{ - GLint i = 1; - GLint log2 = 0; - - if (n<0) { - return -1; - } - - while ( n > i ) { - i *= 2; - log2++; - } - if (i != n) { - return -1; - } - else { - return log2; - } -} - - - -/* - * Return GL_TRUE if internalFormat is a compressed format, return GL_FALSE - * otherwise. - */ -static GLboolean -is_compressed_format(GLcontext *ctx, GLenum internalFormat) -{ - if (ctx->Driver.IsCompressedFormat) { - return (*ctx->Driver.IsCompressedFormat)(ctx, internalFormat); - } - return GL_FALSE; -} - - /* * Given an internal texture format enum or 1, 2, 3, 4 return the -- cgit v1.2.3