diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2019-12-23 07:44:07 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2019-12-23 07:44:07 +0000 |
| commit | 40478aa91ab8b93fa84a15addbfca10b22c2db56 (patch) | |
| tree | 4cbed5639cea14dbbafa2454503dcedbce1aa03d | |
| parent | Testing environment: added GL and D3D11 state reset (diff) | |
| download | DiligentCore-40478aa91ab8b93fa84a15addbfca10b22c2db56.tar.gz DiligentCore-40478aa91ab8b93fa84a15addbfca10b22c2db56.zip | |
Fixed formatting
| -rw-r--r-- | Tests/DiligentCoreAPITest/include/GL/TestingEnvironmentGL.h | 2 | ||||
| -rw-r--r-- | Tests/DiligentCoreAPITest/include/TestingEnvironment.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Tests/DiligentCoreAPITest/include/GL/TestingEnvironmentGL.h b/Tests/DiligentCoreAPITest/include/GL/TestingEnvironmentGL.h index 6df37ca1..f73f9740 100644 --- a/Tests/DiligentCoreAPITest/include/GL/TestingEnvironmentGL.h +++ b/Tests/DiligentCoreAPITest/include/GL/TestingEnvironmentGL.h @@ -55,7 +55,7 @@ public: GLuint GetDummyVAO() { return m_DummyVAO; } - virtual void Reset()override final; + virtual void Reset() override final; private: GLuint m_DummyVAO = 0; diff --git a/Tests/DiligentCoreAPITest/include/TestingEnvironment.h b/Tests/DiligentCoreAPITest/include/TestingEnvironment.h index c1ab4cbc..c282c496 100644 --- a/Tests/DiligentCoreAPITest/include/TestingEnvironment.h +++ b/Tests/DiligentCoreAPITest/include/TestingEnvironment.h @@ -61,6 +61,7 @@ public: void TearDown() override final; virtual void Reset(); + void ReleaseResources(); class ScopedReset |
