1. 13 Sep, 2020 2 commits
  2. 12 Sep, 2020 2 commits
  3. 08 Sep, 2020 2 commits
  4. 07 Sep, 2020 3 commits
  5. 03 Sep, 2020 1 commit
  6. 02 Sep, 2020 1 commit
  7. 26 Aug, 2020 2 commits
  8. 23 Aug, 2020 2 commits
  9. 21 Aug, 2020 1 commit
  10. 17 Aug, 2020 2 commits
  11. 15 Aug, 2020 1 commit
  12. 14 Aug, 2020 5 commits
  13. 13 Aug, 2020 1 commit
  14. 12 Aug, 2020 3 commits
  15. 10 Aug, 2020 1 commit
  16. 07 Aug, 2020 1 commit
  17. 06 Aug, 2020 2 commits
  18. 05 Aug, 2020 2 commits
  19. 04 Aug, 2020 3 commits
  20. 03 Aug, 2020 2 commits
  21. 31 Jul, 2020 1 commit
    • Use GLSLANG_ANGLE to strip features to what ANGLE requires · 1ef2e250
      Shahbaz Youssefi authored
      This change strips a few features similar to GLSLANG_WEB but doesn't
      remove every detail like the latter.  It also hardcodes profile/version
      to core/450.
      
      In particular, TBuiltIns::initialize is specialized to remove most of
      what is not supported or won't be supported by ANGLE.  The result of
      this function is parsed with TParseContext::parseShaderStrings which is
      a performance bottleneck.
      
      This change shaves about 300KB off of ANGLE's binary size and reduces
      the cost of SetupBuiltinSymbolTable to nearly a sixth.
      Signed-off-by: 's avatarShahbaz Youssefi <ShabbyX@gmail.com>