Apply code formatting.

Several files were formatted by the code generation script.

Bug: angleproject:2957
Change-Id: I8a5cbf2c17297a3644686004a8981ab2305c1ada
Reviewed-on: https://chromium-review.googlesource.com/c/1334428
Reviewed-by: Jamie Madill <jmadill@chromium.org>
Commit-Queue: Jamie Madill <jmadill@chromium.org>
diff --git a/src/libANGLE/ResourceManager.cpp b/src/libANGLE/ResourceManager.cpp
index 7b8294a..f7036e0 100644
--- a/src/libANGLE/ResourceManager.cpp
+++ b/src/libANGLE/ResourceManager.cpp
@@ -165,7 +165,7 @@
                                           ShaderType type)
 {
     ASSERT(type != ShaderType::InvalidEnum);
-    GLuint handle    = mHandleAllocator.allocate();
+    GLuint handle = mHandleAllocator.allocate();
     mShaders.assign(handle, new Shader(this, factory, rendererLimitations, type, handle));
     return handle;
 }
@@ -364,7 +364,7 @@
     for (GLsizei i = 0; i < range; ++i)
     {
         rx::PathImpl *impl = paths[static_cast<unsigned>(i)];
-        const auto id   = client + i;
+        const auto id      = client + i;
         mPaths.assign(id, new Path(impl));
     }
     *createdOut = client;