Reformat all cpp and h files.

This applies git cl format --full to all ANGLE sources.

Bug: angleproject:2986
Change-Id: Ib504e618c1589332a37e97696cdc3515d739308f
Reviewed-on: https://chromium-review.googlesource.com/c/1351367
Reviewed-by: Jamie Madill <jmadill@chromium.org>
Reviewed-by: Shahbaz Youssefi <syoussefi@chromium.org>
diff --git a/src/libANGLE/renderer/vulkan/CommandGraph.cpp b/src/libANGLE/renderer/vulkan/CommandGraph.cpp
index 658560e..ec0ce27 100644
--- a/src/libANGLE/renderer/vulkan/CommandGraph.cpp
+++ b/src/libANGLE/renderer/vulkan/CommandGraph.cpp
@@ -83,8 +83,7 @@
 // CommandGraphResource implementation.
 CommandGraphResource::CommandGraphResource(CommandGraphResourceType resourceType)
     : mResourceType(resourceType), mCurrentWritingNode(nullptr)
-{
-}
+{}
 
 CommandGraphResource::~CommandGraphResource() = default;
 
@@ -108,8 +107,7 @@
 // RecordableGraphResource implementation.
 RecordableGraphResource::RecordableGraphResource(CommandGraphResourceType resourceType)
     : CommandGraphResource(resourceType)
-{
-}
+{}
 
 RecordableGraphResource::~RecordableGraphResource() = default;
 
@@ -251,9 +249,7 @@
 }
 
 // QueryGraphResource implementation.
-QueryGraphResource::QueryGraphResource() : CommandGraphResource(CommandGraphResourceType::Query)
-{
-}
+QueryGraphResource::QueryGraphResource() : CommandGraphResource(CommandGraphResourceType::Query) {}
 
 QueryGraphResource::~QueryGraphResource() = default;
 
@@ -300,8 +296,7 @@
       mVisitedState(VisitedState::Unvisited),
       mGlobalMemoryBarrierSrcAccess(0),
       mGlobalMemoryBarrierDstAccess(0)
-{
-}
+{}
 
 CommandGraphNode::~CommandGraphNode()
 {
@@ -594,8 +589,7 @@
 // CommandGraph implementation.
 CommandGraph::CommandGraph(bool enableGraphDiagnostics)
     : mEnableGraphDiagnostics(enableGraphDiagnostics), mLastBarrierIndex(kInvalidNodeIndex)
-{
-}
+{}
 
 CommandGraph::~CommandGraph()
 {