warzone2100/lib/ivis_common/piemode.h

52 lines
1.3 KiB
C
Raw Normal View History

/***************************************************************************/
/*
* pieMode.h
*
* renderer control for pumpkin library functions.
*
*/
/***************************************************************************/
#ifndef _pieMode_h
#define _pieMode_h
/***************************************************************************/
#include "lib/framework/frame.h"
/***************************************************************************/
/*
* Global Definitions
*/
/***************************************************************************/
typedef enum CLEAR_MODE
{
CLEAR_OFF,
CLEAR_OFF_AND_NO_BUFFER_DOWNLOAD,
CLEAR_BLACK,
CLEAR_FOG,
}
CLEAR_MODE;
/***************************************************************************/
/*
* Global Variables
*/
/***************************************************************************/
extern Sint32 _iVPRIM_DIVTABLE[];
/***************************************************************************/
/*
* Global ProtoTypes
*/
/***************************************************************************/
extern BOOL pie_Initialise(void);
extern void pie_ShutDown(void);
extern void pie_ScreenFlip(CLEAR_MODE ClearMode);
extern UDWORD pie_GetResScalingFactor( void );
#endif