mesa: remove _mesa_compressed_row_stride()
authorBrian Paul <brianp@vmware.com>
Sun, 25 Oct 2009 23:25:46 +0000 (17:25 -0600)
committerBrian Paul <brianp@vmware.com>
Sun, 25 Oct 2009 23:25:46 +0000 (17:25 -0600)
src/mesa/main/texcompress.c
src/mesa/main/texcompress.h

index 423ad2490c0ce5909b36957f9d62d545ef55d9ff..262e8236eddd8152370149a798fd0bf676531438 100644 (file)
@@ -153,21 +153,6 @@ _mesa_glenum_to_compressed_format(GLenum format)
 }
 
 
-/*
- * Compute the bytes per row in a compressed texture image.
- * We use this for computing the destination address for sub-texture updates.
- * \param mesaFormat  one of the MESA_FORMAT_* compressed formats
- * \param width  image width in pixels
- * \return stride, in bytes, between rows for compressed image
- */
-GLint
-_mesa_compressed_row_stride(gl_format mesaFormat, GLsizei width)
-{
-   GLint stride = _mesa_format_row_stride(mesaFormat, width);
-   return stride;
-}
-
-
 /*
  * Return the address of the pixel at (col, row, img) in a
  * compressed texture image.
index 43cd741895664f82e5780481b21c89ee7102ce07..d6c16e936c051374eb23cc5820b7330a012b0be0 100644 (file)
@@ -36,10 +36,6 @@ _mesa_get_compressed_formats(GLcontext *ctx, GLint *formats, GLboolean all);
 extern gl_format
 _mesa_glenum_to_compressed_format(GLenum format);
 
-extern GLint
-_mesa_compressed_row_stride(gl_format mesaFormat, GLsizei width);
-
-
 extern GLubyte *
 _mesa_compressed_image_address(GLint col, GLint row, GLint img,
                                gl_format mesaFormat,
@@ -58,7 +54,6 @@ _mesa_init_texture_fxt1( GLcontext *ctx );
 /* no-op macros */
 #define _mesa_get_compressed_formats( c, f ) 0
 #define _mesa_compressed_texture_size_glenum( c, w, h, d, f ) 0
-#define _mesa_compressed_row_stride( f, w) 0
 #define _mesa_compressed_image_address(c, r, i, f, w, i2 ) 0
 #define _mesa_compress_teximage( c, w, h, sF, s, sRS, dF, d, drs ) ((void)0)