home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / raytrace / radiance / simplerd.lha / simplerad / FinalFTP / Light / vcrS.c < prev   
Encoding:
C/C++ Source or Header  |  1992-05-21  |  1.4 KB  |  36 lines

  1. /**********************************************************************/
  2. /*                                                                    */
  3. /* vcrS.c : Some simple routines to record stuff on screen to VCR.    */
  4. /* - General routines not provided.                                   */
  5. /* - fill in routines as required for hardware used. See vcr.c for    */
  6. /* example.                                                           */
  7. /*                                                                    */
  8. /* Copyright (C) 1992, Bernard Kwok                                   */
  9. /* All rights reserved.                                               */
  10. /* Revision 1.0                                                       */
  11. /* May, 1992                                                          */
  12. /**********************************************************************/
  13. #include <stdio.h>
  14. #include "vcr.h"
  15.  
  16. /* Setup parameters for recording */
  17. void vcr_set_mode(mode) int mode; {}
  18.  
  19. /* Start recording */
  20. void vcr_start_record() {}
  21.  
  22. /* Window setup (call before calling winopen). Fixed size at lower left. */
  23. void vcr_setup_window(bord) int bord; { }
  24.  
  25. /* Once window is up, set video parameters */
  26. void vcr_start_video() {}
  27.  
  28. /* Grab whats on the window. Do after evey draw, and swapbuffer. */
  29. void vcr_grab() {}
  30.  
  31. /* Stop recording */
  32. void vcr_stop_record() {}
  33.  
  34. /*  Reset video parameters */
  35. void vcr_end_video() {}
  36.