summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineOpenGL
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-03-17 02:17:19 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-03-17 02:17:19 +0000
commit632b9844c97e14854d52f5595b9c05c8e115a3a5 (patch)
tree0bc49a8add7ad8ff4021e382fede46983aebd2ba /Graphics/GraphicsEngineOpenGL
parentUpdated cmake scripts with Vulkan defines (diff)
downloadDiligentCore-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.cpp2
-rw-r--r--Graphics/GraphicsEngineOpenGL/src/GLContextWindows.cpp2
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 ) :