]> granicus.if.org Git - graphviz/commitdiff
remove unused 'GetFixedOGLPoslocal'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 18 Dec 2021 05:27:05 +0000 (21:27 -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 863b105c665ef7dcd9cbdab9de50ec8c87fd0c82..6ee4704bfdb1f971d5f5765251b62c9087f87f3a 100644 (file)
@@ -136,42 +136,6 @@ void to3D(int x, int y, GLfloat * X, GLfloat * Y, GLfloat * Z)
     return;
 }
 
-int GetFixedOGLPoslocal(int x, int y, GLfloat * X, GLfloat * Y,
-                       GLfloat * Z)
-{
-    GLdouble wwinX;
-    GLdouble wwinY;
-    GLdouble wwinZ;
-
-    GLint viewport[4];
-    GLdouble modelview[16];
-    GLdouble projection[16];
-    GLfloat winX, winY;
-    GLdouble posX, posY, posZ;
-
-    glGetDoublev(GL_MODELVIEW_MATRIX, modelview);
-    glGetDoublev(GL_PROJECTION_MATRIX, projection);
-    glGetIntegerv(GL_VIEWPORT, viewport);
-
-    glColor4f(0.0f, 0.0f, 0.0f, 0.001f);
-    glBegin(GL_POINTS);
-    glVertex3f(10.0f, 10.0f, 0.0f);
-    glEnd();
-
-    gluProject(10.0, 10.0, 1.00, modelview, projection, viewport, &wwinX,
-              &wwinY, &wwinZ);
-
-    winX = (float) x;
-    winY = (float) viewport[3] - (float) y;
-    gluUnProject(winX, winY, wwinZ, modelview, projection, viewport, &posX,
-                &posY, &posZ);
-    *X = (GLfloat) posX;
-    *Y = (GLfloat) posY;
-    *Z = (GLfloat) posZ;
-
-    return 1;
-}
-
 #include <math.h>
 
 static glCompPoint sub(glCompPoint p, glCompPoint q)
index 774e521e27686bc72a819d90fc9d976b1cce8011..7d77910dc1899a23dcccb4fb19ffb93d9a42db67 100644 (file)
@@ -32,8 +32,6 @@ extern "C" {
 
     int GetOGLPosRef(int x, int y, float *X, float *Y, float *Z);
     float GetOGLDistance(int l);
-    int GetFixedOGLPoslocal(int x, int y, GLfloat * X, GLfloat * Y,
-                           GLfloat * Z);
     void to3D(int x, int y, GLfloat * X, GLfloat * Y, GLfloat * Z);
     double point_to_lineseg_dist(glCompPoint p, glCompPoint a, glCompPoint b);
     void replacestr(char *source, char **target);