home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 12 / CD_ASCQ_12_0294.iso / vrac / pov_mp21.zip / NTCONSOL.C < prev    next >
C/C++ Source or Header  |  1993-09-30  |  1KB  |  53 lines

  1. /****************************************************************************
  2. *                vax.c
  3. *
  4. *  This module contains VAX/VMS 5.3 specific routines.
  5. *
  6. *  from Persistence of Vision Raytracer
  7. *  Copyright 1991 Persistence of Vision Team
  8. *---------------------------------------------------------------------------
  9. *  Copying, distribution and legal info is in the file povlegal.doc which
  10. *  should be distributed with this file. If povlegal.doc is not available
  11. *  or for more info please contact:
  12. *
  13. *       Drew Wells [POV-Team Leader]
  14. *       CIS: 73767,1244  Internet: 73767.1244@compuserve.com
  15. *       Phone: (213) 254-4041
  16. *
  17. * This program is based on the popular DKB raytracer version 2.12.
  18. * DKBTrace was originally written by David K. Buck.
  19. * DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
  20. *
  21. *****************************************************************************/
  22.  
  23. #include "config.h"
  24.  
  25. void display_finished ()
  26. {
  27. #ifdef XWINDOWS
  28.   x_display_finished () ;
  29. #endif
  30. }
  31.  
  32. void display_init (unsigned width, unsigned height)
  33. {
  34. #ifdef XWINDOWS
  35.   x_display_init (width, height) ;
  36. #endif
  37. }
  38.  
  39. void display_close ()
  40. {
  41. #ifdef XWINDOWS
  42.   x_display_close () ;
  43. #endif
  44. }
  45.  
  46. void display_plot (x, y, Red, Green, Blue)
  47. int x, y;
  48. char Red, Green, Blue;
  49. {
  50. #ifdef XWINDOWS
  51.   x_display_plot (x, y, Red, Green, Blue) ;
  52. #endif
  53. }