summaryrefslogtreecommitdiff
path: root/src/i_video.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/i_video.h')
-rw-r--r--src/i_video.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/i_video.h b/src/i_video.h
index 7e9698fe..07c2842b 100644
--- a/src/i_video.h
+++ b/src/i_video.h
@@ -102,6 +102,16 @@ void I_SetGrabMouseCallback(grabmouse_callback_t func);
void I_DisplayFPSDots(boolean dots_on);
void I_BindVideoVariables(void);
+// Called before processing any tics in a frame (just after displaying a frame).
+// Time consuming syncronous operations are performed here (joystick reading).
+
+void I_StartFrame (void);
+
+// Called before processing each tic in a frame.
+// Quick syncronous operations are performed here.
+
+void I_StartTic (void);
+
extern char *video_driver;
extern boolean screenvisible;
extern float mouse_acceleration;