code format refine
authorCanon lee <lryer@msn.com>
Thu, 6 Jun 2019 16:16:31 +0000 (00:16 +0800)
committerCanon lee <lryer@msn.com>
Thu, 6 Jun 2019 16:16:31 +0000 (00:16 +0800)
glslang/MachineIndependent/iomapper.cpp

index 274f67d..1817a01 100644 (file)
@@ -166,7 +166,9 @@ struct TNotifyInOutAdaptor
 {
     EShLanguage stage;
     TIoMapResolver& resolver;
-    inline TNotifyInOutAdaptor(EShLanguage s, TIoMapResolver& r) : stage(s), resolver(r)
+    inline TNotifyInOutAdaptor(EShLanguage s, TIoMapResolver& r) 
+      : stage(s)
+      , resolver(r)
     {
     }
 
@@ -888,15 +890,15 @@ void TDefaultGlslIoResolver::reserverResourceSlot(TVarEntryInfo& ent, TInfoSink&
 //TDefaultGlslIoResolver end
 
 /*
-* Basic implementation of glslang::TIoMapResolver that replaces the
-* previous offset behavior.
-* It does the same, uses the offsets for the corresponding uniform
-* types. Also respects the EOptionAutoMapBindings flag and binds
-* them if needed.
-*/
+ * Basic implementation of glslang::TIoMapResolver that replaces the
+ * previous offset behavior.
+ * It does the same, uses the offsets for the corresponding uniform
+ * types. Also respects the EOptionAutoMapBindings flag and binds
+ * them if needed.
+ */
 /*
-* Default resolver
-*/
+ * Default resolver
+ */
 struct TDefaultIoResolver : public TDefaultIoResolverBase {
     TDefaultIoResolver(const TIntermediate& intermediate) : TDefaultIoResolverBase(intermediate) { }