summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/src/glcontext_eagl.mm
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/src/glcontext_eagl.mm')
-rw-r--r--3rdparty/bgfx/src/glcontext_eagl.mm5
1 files changed, 3 insertions, 2 deletions
diff --git a/3rdparty/bgfx/src/glcontext_eagl.mm b/3rdparty/bgfx/src/glcontext_eagl.mm
index 24c6ec04ab0..ff5467450a2 100644
--- a/3rdparty/bgfx/src/glcontext_eagl.mm
+++ b/3rdparty/bgfx/src/glcontext_eagl.mm
@@ -1,5 +1,5 @@
/*
- * Copyright 2011-2016 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2017 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
*/
@@ -122,7 +122,8 @@ namespace bgfx { namespace gl
void resize(GLint _width, GLint _height)
{
- if(m_width == _width && m_height == _height)
+ if (m_width == _width
+ && m_height == _height)
{
return;
}