Change intializer list order to match field order.

BUG=505304

Change-Id: I38149e72732f0b4eb7d398f90b5d11660e2a7fbc
Reviewed-on: https://chromium-review.googlesource.com/282465
Reviewed-by: Geoff Lang <geofflang@chromium.org>
Tested-by: Geoff Lang <geofflang@chromium.org>
diff --git a/src/compiler/translator/OutputHLSL.cpp b/src/compiler/translator/OutputHLSL.cpp
index c17894f..dfee1d9 100644
--- a/src/compiler/translator/OutputHLSL.cpp
+++ b/src/compiler/translator/OutputHLSL.cpp
@@ -115,8 +115,8 @@
       mExtensionBehavior(extensionBehavior),
       mSourcePath(sourcePath),
       mOutputType(outputType),
-      mNumRenderTargets(numRenderTargets),
       mCompileOptions(compileOptions),
+      mNumRenderTargets(numRenderTargets),
       mCurrentFunctionMetadata(nullptr)
 {
     mInsideFunction = false;