From 8ce1ff28db6d37fb1bbdf996ee33406037599e15 Mon Sep 17 00:00:00 2001 From: Chris Cascioli Date: Wed, 8 Dec 2021 14:58:41 -0500 Subject: [PATCH] Added vsync variable used by SwapChain::Present() --- Game.cpp | 7 +++---- Game.h | 4 +++- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Game.cpp b/Game.cpp index b25dada..d80ef1f 100644 --- a/Game.cpp +++ b/Game.cpp @@ -23,15 +23,14 @@ Game::Game(HINSTANCE hInstance) "DirectX Game", // Text for the window's title bar 1280, // Width of the window's client area 720, // Height of the window's client area - true) // Show extra stats (fps) in title bar? + true), // Show extra stats (fps) in title bar? + vsync(false) { - #if defined(DEBUG) || defined(_DEBUG) // Do we want a console window? Probably only in debug mode CreateConsoleWindow(500, 120, 32, 120); printf("Console window created successfully. Feel free to printf() here.\n"); #endif - } // -------------------------------------------------------- @@ -304,7 +303,7 @@ void Game::Draw(float deltaTime, float totalTime) // Present the back buffer to the user // - Puts the final frame we're drawing into the window so the user can see it // - Do this exactly ONCE PER FRAME (always at the very end of the frame) - swapChain->Present(0, 0); + swapChain->Present(vsync ? 1 : 0, 0); // Due to the usage of a more sophisticated swap chain, // the render target must be re-bound after every call to Present() diff --git a/Game.h b/Game.h index db945fa..4871310 100644 --- a/Game.h +++ b/Game.h @@ -21,11 +21,13 @@ public: private: + // Should we use vsync to limit the frame rate? + bool vsync; + // Initialization helper methods - feel free to customize, combine, etc. void LoadShaders(); void CreateBasicGeometry(); - // Note the usage of ComPtr below // - This is a smart pointer for objects that abide by the // Component Object Model, which DirectX objects do