home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************
- * os2.c
- *
- * This module contains stubs for the video routines for an OS/2 text
- * only version of POV-Ray Version 2.0
- *
- * from Persistence of Vision Raytracer
- * Copyright 1991, 1992, 1993 Persistence of Vision Team
- *---------------------------------------------------------------------------
- * Copying, distribution and legal info is in the file POVLEGAL.DOC which
- * should be distributed with this file.
- *
- * This program is based on the popular DKB raytracer version 2.12.
- * DKBTrace was originally written by David K. Buck.
- * DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
- *
- *****************************************************************************/
-
- void display_finished ()
- {
- }
-
- void display_init ()
- {
- }
-
- void display_close ()
- {
- }
-
- void display_plot (x, y, Red, Green, Blue)
- int x, y;
- char Red, Green, Blue;
- {
- }
-