home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / dev / e / dbuffer.lha / doublebuffer.readme < prev    next >
Text File  |  1997-01-25  |  764b  |  31 lines

  1. Short: Easy double buffering of screens
  2.  
  3. Uploader: ralf.quimby@quancon.com
  4.  
  5. Author:   ralf.quimby@quancon.com
  6.  
  7. Type: dev/e
  8.  
  9.  
  10. This is my attempt at doublebuffering made easy.
  11. I swiped the code from the RKRM source Intuition/Screens/Doublebuffer.e.
  12. I rearanged the routines into 3 easy to use commands and one OBJECT.
  13.  
  14. Usage:
  15. DEF p:PTR TO dscreen
  16. p:=opendscreen(ns)  -> ns is a pointer to a newscreen object (ns) works just like OpenScreen(ns)
  17. ->your render routines
  18. dswitch(p)  -> toggles displays
  19. closedscreen(p) ->closes the screen
  20.  
  21. If you need to access any of the screen object
  22. Normal screen :myscreen.whatever
  23. dscreen       :mydscreen.screen.whatever
  24.  
  25.  
  26.  
  27.  
  28. This is usable by all who want. All I ask is let me know.
  29.  
  30. my e-mail address is ralf.quimby@quancon.com.
  31.