IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 5, 2005, 3:55:45 PM (21 years ago)
Author:
eugene
Message:

adding no-X version of JPEG, other features

Location:
trunk/Ohana/src/kii/overlay
Files:
6 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/kii/overlay/EraseOverlay.c

    r2906 r5700  
    2424  }
    2525
     26  if (USE_XWINDOW) Refresh (graphic, layout, 0);
     27
    2628  fcntl (layout[0].Ximage, F_SETFL, O_NONBLOCK); 
    27   Refresh (graphic, layout, 0);
    2829  return (TRUE);
    2930}
  • trunk/Ohana/src/kii/overlay/LoadOverlay.c

    r2466 r5700  
    8888  OVERLAY[N] = TRUE;
    8989  /*  Refresh (graphic, layout, 0); */
    90   for (i = 0; i < NOVERLAYS; i++) {
    91     if (OVERLAY[i])
    92       PaintOverlay (graphic, layout, i);
     90  if (USE_XWINDOW) {
     91    for (i = 0; i < NOVERLAYS; i++) {
     92      if (OVERLAY[i])
     93        PaintOverlay (graphic, layout, i);
     94    }
     95    PaintTickmarks (graphic, layout);
     96    XFlush (graphic[0].display);
    9397  }
    94   PaintTickmarks (graphic, layout);
    95   XFlush (graphic[0].display);
    9698  fcntl (layout[0].Ximage, F_SETFL, O_NONBLOCK); 
    9799  return (TRUE);
  • trunk/Ohana/src/kii/overlay/LoadTickmarks.c

    r2466 r5700  
    5555  layout[0].tickmarks.Nobjects = Nobjects;
    5656
    57   Refresh (graphic, layout, 0);
     57  if (USE_XWINDOW) Refresh (graphic, layout, 0);
     58
    5859  fcntl (layout[0].Ximage, F_SETFL, O_NONBLOCK); 
    5960  return (TRUE);
Note: See TracChangeset for help on using the changeset viewer.