Added some more features to the frame debugger and updated DirectX9 renderer.

git-svn-id: http://svn.purei.org/purei/trunk@1127 b36208d7-6611-0410-8bec-b1987f11c4a2
This commit is contained in:
jpd002 2013-05-19 07:18:00 +00:00
parent ad61cb7843
commit e64b167eb8
14 changed files with 777 additions and 442 deletions

View file

@ -34,6 +34,11 @@ void CMailBox::WaitForCall(unsigned int timeOut)
m_waitCondition.wait_for(waitLock, std::chrono::milliseconds(timeOut));
}
void CMailBox::FlushCalls()
{
SendCall([] () { }, true);
}
void CMailBox::SendCall(const FunctionType& function, bool waitForCompletion)
{
{