]> granicus.if.org Git - graphviz/commitdiff
remove unused 'glCompSelectionBox'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 18 Dec 2021 05:31:29 +0000 (21:31 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 18 Dec 2021 22:35:57 +0000 (14:35 -0800)
lib/glcomp/glutils.c
lib/glcomp/glutils.h

index 6ee4704bfdb1f971d5f5765251b62c9087f87f3a..a5cb52453679468ae6915a16db49740436351152 100644 (file)
@@ -203,30 +203,6 @@ void replacestr(char *source, char **target)
     *target = strdup(source);
 }
 
-void glCompSelectionBox(glCompSet * s)
-{
-    static GLfloat x, y, w, h;
-
-    x = s->mouse.pos.x;
-    y = s->mouse.pos.y;
-    w = s->mouse.dragX;
-    h = s->mouse.dragY;
-    printf("%f %f  %f  %f \n", x, y, w, h);
-    glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
-
-    glBegin(GL_POLYGON);
-    glVertex2f(0, 0);
-    glVertex2f(250, 0);
-    glVertex2f(250, 250);
-    glVertex2f(0, 250);
-    glVertex2f(0, 0);
-
-    glEnd();
-
-
-    glDisable(GL_LINE_STIPPLE);
-}
-
 void glCompCalcWidget(glCompCommon * parent, glCompCommon * child,
                      glCompCommon * ref)
 {
index 7d77910dc1899a23dcccb4fb19ffb93d9a42db67..e75a5563484aa2840adecec6b3f2e8e51ebd5b6b 100644 (file)
@@ -45,7 +45,6 @@ extern "C" {
                                  glCompColor * target);
     extern void glCompSetColor(glCompColor * c);
 
-    void glCompSelectionBox(glCompSet * s);
     extern GLfloat distBetweenPts(glCompPoint A,glCompPoint B,float R);
     extern int is_point_in_rectangle(float X, float Y, float RX, float RY, float RW,float RH);