diff --git a/StandAlone/StandAlone.cpp b/StandAlone/StandAlone.cpp index 278c52eb..b7c43877 100644 --- a/StandAlone/StandAlone.cpp +++ b/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|opengl} 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" diff --git a/glslang/MachineIndependent/SymbolTable.h b/glslang/MachineIndependent/SymbolTable.h index 0381f6e6..591858ca 100755 --- a/glslang/MachineIndependent/SymbolTable.h +++ b/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; }