From 8c483ffc69f999423dd4e4d385bbe4b7e697ab45 Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Fri, 25 Oct 2019 00:24:36 -0700 Subject: Fixed few clang warnings --- Graphics/GraphicsEngineOpenGL/src/FenceGLImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Graphics/GraphicsEngineOpenGL') diff --git a/Graphics/GraphicsEngineOpenGL/src/FenceGLImpl.cpp b/Graphics/GraphicsEngineOpenGL/src/FenceGLImpl.cpp index c207bef4..41db445e 100644 --- a/Graphics/GraphicsEngineOpenGL/src/FenceGLImpl.cpp +++ b/Graphics/GraphicsEngineOpenGL/src/FenceGLImpl.cpp @@ -78,7 +78,7 @@ void FenceGLImpl :: Wait(Uint64 Value, bool FlushCommands) break; auto res = glClientWaitSync(val_fence.second, FlushCommands ? GL_SYNC_FLUSH_COMMANDS_BIT : 0, std::numeric_limits::max()); - VERIFY_EXPR(res == GL_ALREADY_SIGNALED || res == GL_CONDITION_SATISFIED); + VERIFY_EXPR(res == GL_ALREADY_SIGNALED || res == GL_CONDITION_SATISFIED); (void)res; if (val_fence.first > m_LastCompletedFenceValue) m_LastCompletedFenceValue = val_fence.first; -- cgit v1.2.3