Descent3/ddgr_mac/macOSSurface.h
2024-04-16 12:56:40 -06:00

47 lines
1.4 KiB
C

/*
* $Logfile: /Descent3/main/ddgr_mac/macOSSurface.h $
* $Revision: 1.1.1.1 $
* $Date: 2003/08/26 03:56:53 $
* $Author: kevinb $
*
* macintosh implementation of interface to ddgr library
*
* $Log: macOSSurface.h,v $
* Revision 1.1.1.1 2003/08/26 03:56:53 kevinb
* initial 1.5 import
*
*
* 3 5/11/97 8:00 PM Jeremy
* prototype for ddgr_os_surf_GetAspectRatio
*
* 2 4/15/97 7:01 PM Jeremy
* initial implementation of fullscreen (via DrawSprocket) os_surfaces.
* right now only initialization and closing of surfaces/video is
* implemented. still need to implement surface
* creation/deletion/blitting.
*
* 1 4/11/97 6:02 PM Jeremy
* initial checkin
*
* 1 4/9/97 7:16 PM Jeremy
* initial check in
*
* $NoKeywords: $
*/
#include "ddgr_mac.h"
#include "pserror.h"
// Initialize the macintosh for full screen graphics
ddgr_error ddgr_os_surf_fullscreen_Init(ddgr_init_info *info);
// Close down the macintosh full screen graphics system
ddgr_error ddgr_os_surf_fullscreen_Close(void);
// Initialize the macintosh for windowed graphics
ddgr_error ddgr_os_surf_windowed_Init(ddgr_init_info *info);
// Close down the macintosh windowed graphics system
ddgr_error ddgr_os_surf_windowed_Close(void);
// Get the Aspect Ratio for the current main video surface
float ddgr_os_surf_GetAspectRatio(void);