Change Present to finish only after swap

This commit is contained in:
James Rowe 2019-09-18 10:54:39 -06:00
parent 6fff8e3921
commit ac90cd0378
6 changed files with 20 additions and 1 deletions

View file

@ -34,6 +34,9 @@ public:
/// Draws the latest frame to the window (Renderer specific implementation)
virtual void Present() = 0;
/// Marks the presentation buffer as complete and swaps it back into the pool
virtual void PresentComplete() = 0;
/// Prepares for video dumping (e.g. create necessary buffers, etc)
virtual void PrepareVideoDumping() = 0;