aboutsummaryrefslogtreecommitdiff
path: root/src/libANGLE/Image.cpp
diff options
context:
space:
mode:
authorGeoff Lang <geofflang@chromium.org>2018-06-07 15:09:00 -0400
committerCommit Bot <commit-bot@chromium.org>2018-06-07 20:00:44 +0000
commite1a057e8aa64274f15fa95e282f7b85e9b45365f (patch)
treeb5e4cad7aeb9b372ce7dffe229a99f7fef51ea22 /src/libANGLE/Image.cpp
parent74be296b0cc514b5a18e1cbd28f2621c34aab3ea (diff)
downloadangle-e1a057e8aa64274f15fa95e282f7b85e9b45365f.tar.gz
Fully format some files.
Change-Id: Id6ea245849696d4c6d7eabc6860c0ac424dd8013 Reviewed-on: https://chromium-review.googlesource.com/1091309 Reviewed-by: Geoff Lang <geofflang@chromium.org> Commit-Queue: Geoff Lang <geofflang@chromium.org>
Diffstat (limited to 'src/libANGLE/Image.cpp')
-rw-r--r--src/libANGLE/Image.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libANGLE/Image.cpp b/src/libANGLE/Image.cpp
index bfdb9267cd..6b80741ca9 100644
--- a/src/libANGLE/Image.cpp
+++ b/src/libANGLE/Image.cpp
@@ -10,10 +10,10 @@
#include "common/debug.h"
#include "common/utilities.h"
+#include "libANGLE/Renderbuffer.h"
+#include "libANGLE/Texture.h"
#include "libANGLE/angletypes.h"
#include "libANGLE/formatutils.h"
-#include "libANGLE/Texture.h"
-#include "libANGLE/Renderbuffer.h"
#include "libANGLE/renderer/EGLImplFactory.h"
#include "libANGLE/renderer/ImageImpl.h"
@@ -30,8 +30,8 @@ gl::ImageIndex GetImageIndex(EGLenum eglTarget, const egl::AttributeMap &attribs
}
gl::TextureTarget target = egl_gl::EGLImageTargetToTextureTarget(eglTarget);
- GLint mip = static_cast<GLint>(attribs.get(EGL_GL_TEXTURE_LEVEL_KHR, 0));
- GLint layer = static_cast<GLint>(attribs.get(EGL_GL_TEXTURE_ZOFFSET_KHR, 0));
+ GLint mip = static_cast<GLint>(attribs.get(EGL_GL_TEXTURE_LEVEL_KHR, 0));
+ GLint layer = static_cast<GLint>(attribs.get(EGL_GL_TEXTURE_ZOFFSET_KHR, 0));
if (target == gl::TextureTarget::_3D)
{