2001-12-18 02:23:39 +00:00
|
|
|
#ifndef AVP_OPENGL_H
|
|
|
|
#define AVP_OPENGL_H
|
|
|
|
|
|
|
|
#include "kshape.h"
|
|
|
|
|
|
|
|
void InitOpenGL();
|
|
|
|
void ThisFramesRenderingHasBegun();
|
|
|
|
void ThisFramesRenderingHasFinished();
|
|
|
|
void D3D_SkyPolygon_Output(POLYHEADER *inputPolyPtr, RENDERVERTEX *renderVerticesPtr);
|
|
|
|
void D3D_DrawBackdrop();
|
2001-12-22 00:49:57 +00:00
|
|
|
void D3D_FadeDownScreen(int brightness, int colour);
|
|
|
|
void RenderString(char *stringPtr, int x, int y, int colour);
|
|
|
|
void RenderStringCentred(char *stringPtr, int centreX, int y, int colour);
|
2002-01-09 23:07:34 +00:00
|
|
|
void RenderStringVertically(char *stringPtr, int centreX, int bottomY, int colour);
|
2001-12-22 00:49:57 +00:00
|
|
|
void D3D_DecalSystem_Setup();
|
|
|
|
void D3D_DecalSystem_End();
|
|
|
|
void SecondFlushD3DZBuffer();
|
|
|
|
void D3D_PlayerDamagedOverlay(int intensity);
|
2002-01-09 23:07:34 +00:00
|
|
|
void D3D_PredatorScreenInversionOverlay();
|
|
|
|
void D3D_ScreenInversionOverlay();
|
|
|
|
void D3D_DrawColourBar(int yTop, int yBottom, int rScale, int gScale, int bScale);
|
2001-12-18 02:23:39 +00:00
|
|
|
|
|
|
|
#endif
|