Browse Source

minor naming cleanup

Christoph Kubisch 6 years ago
parent
commit
412ff6ea6a
2 changed files with 2 additions and 2 deletions
  1. 1 1
      StandAlone/StandAlone.cpp
  2. 1 1
      glslang/MachineIndependent/SymbolTable.h

+ 1 - 1
StandAlone/StandAlone.cpp

@@ -1525,7 +1525,7 @@ void usage()
            "  --auto-map-locations | --aml      automatically locate input/output lacking\n"
            "                                    'location' (fragile, not cross stage)\n"
            "  --client {vulkan<ver>|opengl<ver>} see -V and -G\n"
-           "  --dump-builtin-symbols            prints builint symbol table prior each stage\n"
+           "  --dump-builtin-symbols            prints builtin symbol table prior each compile\n"
            "  -dumpfullversion | -dumpversion   print bare major.minor.patchlevel\n"
            "  --flatten-uniform-arrays | --fua  flatten uniform texture/sampler arrays to\n"
            "                                    scalars\n"

+ 1 - 1
glslang/MachineIndependent/SymbolTable.h

@@ -116,7 +116,7 @@ public:
     }
     virtual int getNumExtensions() const { return extensions == nullptr ? 0 : (int)extensions->size(); }
     virtual const char** getExtensions() const { return extensions->data(); }
-    virtual void dump(TInfoSink &infoSink, bool pretty = false) const = 0;
+    virtual void dump(TInfoSink &infoSink, bool complete = false) const = 0;
     void dumpExtensions(TInfoSink &infoSink) const;
 
     virtual bool isReadOnly() const { return ! writable; }