progs/tests: Removed unused variable from texdown.c.
authorVinson Lee <vlee@vmware.com>
Sat, 5 Dec 2009 09:22:34 +0000 (01:22 -0800)
committerVinson Lee <vlee@vmware.com>
Sat, 5 Dec 2009 09:23:05 +0000 (01:23 -0800)
progs/tests/texdown.c

index e6881d39a0a7ec4e59b0f478ca9b6beb2f27bd84..92df01b83d2acde1e6b8eb7899747af27f93c60d 100644 (file)
@@ -162,7 +162,7 @@ MeasureDownloadRate(void)
    const int image_bytes = align(w * h * BytesPerTexel(Format), ALIGN);
    const int bytes = image_bytes * NR_TEXOBJ;
    GLubyte *orig_texImage, *orig_getImage;
-   GLubyte *texImage, *getImage;
+   GLubyte *texImage;
    GLdouble t0, t1, time;
    int count;
    int i;
@@ -184,7 +184,6 @@ MeasureDownloadRate(void)
    printf("alloc %p %p\n", orig_texImage, orig_getImage);
 
    texImage = (GLubyte *)align((unsigned long)orig_texImage, ALIGN);
-   getImage = (GLubyte *)align((unsigned long)orig_getImage, ALIGN);   
 
    for (i = 1; !(((unsigned long)texImage) & i); i<<=1)
       ;