removed detritus
authorDaniel Borca <dborca@users.sourceforge.net>
Fri, 31 Oct 2003 11:07:39 +0000 (11:07 +0000)
committerDaniel Borca <dborca@users.sourceforge.net>
Fri, 31 Oct 2003 11:07:39 +0000 (11:07 +0000)
src/mesa/drivers/glide/fxddtex.c

index 0885dad12c2d1f35b8f35c27ac8007bdfa54e23d..c425549d9cbecf7cd4938b303778380821915197 100644 (file)
@@ -714,9 +714,6 @@ fetch_alpha8(const struct gl_texture_image *texImage,
 
    i = i * mml->wScale;
    j = j * mml->hScale;
-   /* [dBorca] why, oh... why? */
-   i = i * mml->width / texImage->Width;
-   j = j * mml->height / texImage->Height;
 
    texel = ((GLubyte *) texImage->Data) + j * mml->width + i;
    rgba[RCOMP] = 255;
@@ -736,9 +733,6 @@ fetch_index8(const struct gl_texture_image *texImage,
 
    i = i * mml->wScale;
    j = j * mml->hScale;
-   /* [dBorca] why, oh... why? */
-   i = i * mml->width / texImage->Width;
-   j = j * mml->height / texImage->Height;
 
    texel = ((GLubyte *) texImage->Data) + j * mml->width + i;
    *indexOut = *texel;
@@ -1428,7 +1422,6 @@ fxDDTexSubImage2D(GLcontext * ctx, GLenum target, GLint level,
    }
    else {
       /* no rescaling needed */
-      /* [dBorca] Hack alert: compute address of dest subimage within the overal tex image */
       _mesa_transfer_teximage(ctx, 2, texImage->Format,  /* Tex int format */
                               texImage->TexFormat,       /* dest format */
                               (GLubyte *) texImage->Data,/* dest */