add concurrent rendering hooks

This commit is contained in:
Glenn Maynard
2006-01-17 01:24:40 +00:00
parent 9ac6256279
commit 35b4fef38e
4 changed files with 28 additions and 0 deletions
@@ -25,6 +25,10 @@ public:
virtual void Update() { }
virtual VideoModeParams GetActualVideoModeParams() const = 0;
virtual bool SupportsThreadedRendering() { return false; }
virtual void BeginConcurrentRendering() { }
virtual void EndConcurrentRendering() { }
};
#endif