Non-functional: missing comments from missed git add.
authorJohn Kessenich <cepheus@frii.com>
Fri, 20 Oct 2017 16:56:20 +0000 (10:56 -0600)
committerJohn Kessenich <cepheus@frii.com>
Fri, 20 Oct 2017 16:56:20 +0000 (10:56 -0600)
glslang/MachineIndependent/ParseHelper.h

index 62b1e8e0843bec6bbac663e8cd2f1ea02cf1322c..73b9798b516334f1453fc3b53bf02b9ef5333f8c 100644 (file)
@@ -210,10 +210,10 @@ protected:
                                       TSwizzleSelectors<TVectorSelector>&);
 
     // Manage the global uniform block (default uniforms in GLSL, $Global in HLSL)
-    TVariable* globalUniformBlock;   // the actual block, inserted into the symbol table
-    unsigned int globalUniformBinding;
-    unsigned int globalUniformSet;
-    int firstNewMember;              // the index of the first member not yet inserted into the symbol table
+    TVariable* globalUniformBlock;     // the actual block, inserted into the symbol table
+    unsigned int globalUniformBinding; // the block's binding number
+    unsigned int globalUniformSet;     // the block's set number
+    int firstNewMember;                // the index of the first member not yet inserted into the symbol table
     // override this to set the language-specific name
     virtual const char* getGlobalUniformBlockName() const { return ""; }
     virtual void setUniformBlockDefaults(TType&) const { }