i_video.h (412B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 #ifndef __I_VIDEO__ 24 #define __I_VIDEO__ 25 26 27 #include "doomdef.h" 28 29 #ifdef __GNUG__ 30 #pragma interface 31 #endif 32 33 34 35 36 37 void I_InitGraphics (void); 38 39 40 void I_ShutdownGraphics(void); 41 42 43 void I_SetPalette (byte* palette); 44 45 void I_UpdateNoBlit (void); 46 void I_FinishUpdate (void); 47 48 49 void I_WaitVBL(int count); 50 51 void I_ReadScreen (byte* scr); 52 53 void I_BeginRead (void); 54 void I_EndRead (void); 55 56 57 58 #endif 59 60 61 62 63