about summary refs log tree commit diff
path: root/src/engine/client/graphics.h
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2011-12-31 10:04:46 +0100
committerMagnus Auvinen <magnus.auvinen@gmail.com>2011-12-31 10:04:46 +0100
commit7a36a103aec1c0aafc89a45a4c7fb82944e6baba (patch)
treee698f27932240b7b6d7ddc357be02cf4f498d9d5 /src/engine/client/graphics.h
parent8a91bfa1ddff0c99d65375b8b5c57e710169543a (diff)
downloadzcatch-7a36a103aec1c0aafc89a45a4c7fb82944e6baba.tar.gz
zcatch-7a36a103aec1c0aafc89a45a4c7fb82944e6baba.zip
fixed so that the rendering can be done async from the input, network and update
Diffstat (limited to 'src/engine/client/graphics.h')
-rw-r--r--src/engine/client/graphics.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/engine/client/graphics.h b/src/engine/client/graphics.h
index d97513f3..37276d36 100644
--- a/src/engine/client/graphics.h
+++ b/src/engine/client/graphics.h
@@ -144,6 +144,10 @@ public:
 
 	virtual int GetVideoModes(CVideoMode *pModes, int MaxModes);
 
+	// syncronization
+	virtual void InsertSignal(semaphore *pSemaphore);
+	virtual bool IsIdle();
+	virtual void WaitForIdle();
 };
 
 #endif