mesa: add some braces in _mesa_make_current()

Slightly better readability.
This commit is contained in:
Brian Paul
2017-07-06 11:59:55 -06:00
parent 960aa95df6
commit 1b3cbcc7be

View File

@@ -1663,8 +1663,9 @@ _mesa_make_current( struct gl_context *newCtx,
/* make sure this context is valid for flushing */
curCtx != newCtx &&
curCtx->Const.ContextReleaseBehavior ==
GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH)
GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH) {
_mesa_flush(curCtx);
}
/* We used to call _glapi_check_multithread() here. Now do it in drivers */