]> granicus.if.org Git - graphviz/commitdiff
smyrna: remove useless 'cb_mouseentry' callback
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 29 Sep 2021 00:35:09 +0000 (17:35 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 2 Oct 2021 00:00:18 +0000 (17:00 -0700)
cmd/smyrna/glutrender.c

index 5bbafdcc413052ca121f48626be3e20cbb1625ae..388284517b60cd84cf0891e8c3b625d6b5e8eabb 100644 (file)
@@ -153,18 +153,7 @@ static void cb_drag(int X, int Y)
     cb_display();
 
 }
-void cb_mouseentry(int state)
-{
-    if(state==GLUT_LEFT)
-    {
-       //TODO when mouse leaves the scene (which might be impossible in full screen modes with one monitor     
-    }
-    else // GLUT_ENTERED
-    {
-       //TODO mouse is back in scene 
-    }
 
-}
 void cb_keyboard(unsigned char key,int x, int y)
 {
     if (key==27)    /*ESC*/
@@ -279,7 +268,7 @@ int cb_glutinit(int x,int y,int w,int h, int bits,int s_rate,int fullscreen,int*
     glutMotionFunc(cb_drag);
     glutPassiveMotionFunc(cb_mouseover);
     glutVisibilityFunc(NULL);
-    glutEntryFunc(cb_mouseentry);//if mouse pointer left or entered the scene
+    glutEntryFunc(NULL);
     glutSpecialFunc(cb_special_key);
     glutSpecialUpFunc(cb_special_key_up);