home *** CD-ROM | disk | FTP | other *** search
/ Chestnut's Multimedia Mania / MM_MANIA.ISO / graphics / povsrc20 / os2.c < prev    next >
Text File  |  1993-09-27  |  1KB  |  36 lines

  1. /****************************************************************************
  2. *                os2.c
  3. *
  4. *  This module contains stubs for the video routines for an OS/2 text
  5. *  only version of POV-Ray Version 2.0
  6. *
  7. *  from Persistence of Vision Raytracer 
  8. *  Copyright 1991, 1992, 1993 Persistence of Vision Team
  9. *---------------------------------------------------------------------------
  10. *  Copying, distribution and legal info is in the file POVLEGAL.DOC which
  11. *  should be distributed with this file.
  12. *
  13. * This program is based on the popular DKB raytracer version 2.12.
  14. * DKBTrace was originally written by David K. Buck.
  15. * DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
  16. *
  17. *****************************************************************************/
  18.  
  19. void display_finished ()
  20.    {
  21.    }
  22.  
  23. void display_init ()
  24.    {
  25.    }
  26.  
  27. void display_close ()
  28.    {
  29.    }
  30.  
  31. void display_plot (x, y, Red, Green, Blue)
  32.    int x, y;
  33.    char Red, Green, Blue;
  34.    {
  35.    }
  36.