diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-03-17 02:17:19 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-03-17 02:17:19 +0000 |
| commit | 632b9844c97e14854d52f5595b9c05c8e115a3a5 (patch) | |
| tree | 0bc49a8add7ad8ff4021e382fede46983aebd2ba /Graphics/GraphicsEngineOpenGL | |
| parent | Updated cmake scripts with Vulkan defines (diff) | |
| download | DiligentCore-632b9844c97e14854d52f5595b9c05c8e115a3a5.tar.gz DiligentCore-632b9844c97e14854d52f5595b9c05c8e115a3a5.zip | |
Implemented Vulkan instance initialization; added vulkan debug utils
Diffstat (limited to 'Graphics/GraphicsEngineOpenGL')
| -rw-r--r-- | Graphics/GraphicsEngineOpenGL/src/GLContextLinux.cpp | 2 | ||||
| -rw-r--r-- | Graphics/GraphicsEngineOpenGL/src/GLContextWindows.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Graphics/GraphicsEngineOpenGL/src/GLContextLinux.cpp b/Graphics/GraphicsEngineOpenGL/src/GLContextLinux.cpp index ffa31068..d4f38df3 100644 --- a/Graphics/GraphicsEngineOpenGL/src/GLContextLinux.cpp +++ b/Graphics/GraphicsEngineOpenGL/src/GLContextLinux.cpp @@ -81,7 +81,7 @@ namespace Diligent MessageSS << ")" << std::endl << message << std::endl; - LOG_INFO_MESSAGE_ONCE( MessageSS.str().c_str() ); + LOG_INFO_MESSAGE( MessageSS.str().c_str() ); } GLContext::GLContext( const EngineGLAttribs &InitAttribs, DeviceCaps &DeviceCaps ) : diff --git a/Graphics/GraphicsEngineOpenGL/src/GLContextWindows.cpp b/Graphics/GraphicsEngineOpenGL/src/GLContextWindows.cpp index 0760e70e..d42c3625 100644 --- a/Graphics/GraphicsEngineOpenGL/src/GLContextWindows.cpp +++ b/Graphics/GraphicsEngineOpenGL/src/GLContextWindows.cpp @@ -82,7 +82,7 @@ namespace Diligent MessageSS << ")" << std::endl << message << std::endl; - LOG_INFO_MESSAGE_ONCE( MessageSS.str().c_str() ); + LOG_INFO_MESSAGE( MessageSS.str().c_str() ); } GLContext::GLContext(const EngineGLAttribs &InitAttribs, DeviceCaps &DeviceCaps ) : |
