1. 19 Aug, 2015 1 commit
  2. 17 Aug, 2015 6 commits
  3. 16 Aug, 2015 5 commits
  4. 15 Aug, 2015 1 commit
  5. 11 Aug, 2015 4 commits
  6. 10 Aug, 2015 2 commits
  7. 07 Aug, 2015 7 commits
  8. 06 Aug, 2015 1 commit
  9. 05 Aug, 2015 6 commits
  10. 03 Aug, 2015 1 commit
  11. 02 Aug, 2015 1 commit
    • Version reporting: Restart active use of revision.h, now based on a git tag. · 0da9eaab
      John Kessenich authored
      The new make-revision script regenerates glslang/Include/revision.h,
      used as it always has been, but made with a git-tag version and the
      the number of commits on master.
      
      I have a pre-commit hook that will automatically do this on master,
      likely often enough to work in practice, without needing pull requests
      to include it.
  12. 01 Aug, 2015 3 commits
  13. 31 Jul, 2015 2 commits
    • Output wrapping #line directives for included content. · 1eed969b
      Lei Zhang authored
      Also changed the includer interface to let it return the actual
      full path of the included file.
    • Update scanner in TParseContext when changing the input stream. · 2b4ebbb1
      Lei Zhang authored
      After parsing a #include directive, we push a TokenizableString
      which contains the content of the included file into the input
      stack. Henceforth, tokens will be read from the newly pushed
      TokenizableString. However, the scanner in TParseContext still
      points to the previous input stream. We need to update the scanner
      to point to the new input stream inside TokenizableString. Thus,
      the setCurrent{String|Line|..} method in TParseContext updates
      the status of the correct input stream. After finishing the newly
      pushed TokenizableString, we need to restore the scanner to the
      previous input stream.