]> granicus.if.org Git - graphviz/commitdiff
remove unused variables in glCompRenderText
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 5 Sep 2020 23:25:58 +0000 (16:25 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 12 Sep 2020 02:24:16 +0000 (19:24 -0700)
lib/glcomp/glcompfont.c

index 1be8a11797b6e27ac71efff168c9e0673e30b23a..f21014b89d36e0b9e685b64744c571e6dde95432 100644 (file)
@@ -425,15 +425,12 @@ void glCompDrawText(glCompFont * f,GLfloat x,GLfloat y)
 void glCompRenderText(glCompFont * f, glCompObj * parentObj)
 {
     static glCompCommon ref;
-    GLfloat x, y, z, w, h;
+    GLfloat x, y;
     if (!f->tex)
        return;
     x = 0;
     y = 0;
-    w = f->tex->width;
-    h = f->tex->height;
     ref = parentObj->common;
-    z = ref.pos.z;
     switch (f->justify.HJustify) 
     {
     case glFontHJustifyNone:
@@ -459,7 +456,6 @@ void glCompRenderText(glCompFont * f, glCompObj * parentObj)
        y = ref.refPos.y + (ref.height - f->tex->height) / (GLfloat) 2.0;
        break;
     }
-       z=ref.refPos.z;
 
     glCompSetColor(&f->color);
                glCompDrawText(f,x,y);