From 9393ce98a7c6f0a969510503f3b2cf64198273ba Mon Sep 17 00:00:00 2001 From: assiduous Date: Mon, 23 Dec 2019 10:44:13 -0800 Subject: Renamed MAP_FLAG_DO_NOT_SYNCHRONIZE flag to MAP_FLAG_NO_OVERWRITE (API version ) --- Graphics/GraphicsEngineOpenGL/src/BufferGLImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Graphics/GraphicsEngineOpenGL') diff --git a/Graphics/GraphicsEngineOpenGL/src/BufferGLImpl.cpp b/Graphics/GraphicsEngineOpenGL/src/BufferGLImpl.cpp index 9c1f58e2..81d443a7 100644 --- a/Graphics/GraphicsEngineOpenGL/src/BufferGLImpl.cpp +++ b/Graphics/GraphicsEngineOpenGL/src/BufferGLImpl.cpp @@ -296,7 +296,7 @@ void BufferGLImpl::MapRange(GLContextState& CtxState, MAP_TYPE MapType, Uint32 M Access |= GL_MAP_INVALIDATE_BUFFER_BIT; } - if (MapFlags & MAP_FLAG_DO_NOT_SYNCHRONIZE) + if (MapFlags & MAP_FLAG_NO_OVERWRITE) { // If GL_MAP_UNSYNCHRONIZED_BIT flag is set, OpenGL will not attempt to synchronize // operations on the buffer. -- cgit v1.2.3