1. 19 Sep, 2019 2 commits
  2. 18 Sep, 2019 6 commits
  3. 16 Sep, 2019 5 commits
  4. 13 Sep, 2019 1 commit
  5. 12 Sep, 2019 1 commit
  6. 11 Sep, 2019 2 commits
  7. 10 Sep, 2019 1 commit
  8. 09 Sep, 2019 1 commit
  9. 05 Sep, 2019 2 commits
  10. 04 Sep, 2019 1 commit
  11. 03 Sep, 2019 1 commit
  12. 02 Sep, 2019 3 commits
  13. 30 Aug, 2019 2 commits
  14. 29 Aug, 2019 1 commit
  15. 28 Aug, 2019 5 commits
  16. 27 Aug, 2019 3 commits
  17. 26 Aug, 2019 3 commits
    • Merge pull request #1882 from Kangz/fix-chrome · 32d18c55
      John Kessenich authored
      GN build (for Chromium): enable HLSL in dependents.
    • GN build (for Chromium): enable HLSL in dependents. · 9757da4f
      Corentin Wallez authored
      The previous fix for this only enabled HLSL internally in glslang which
      means that dependent using HLSL, for example shaderc, failed
      compilation.
    • Dereference any array type before expanding root-level SSBO members · 1f1e5369
      baldurk authored
      If we don't do this then we get reflection output like so:
      
      ArrayedBind[0].a.a: offset 0, type 1406, size 1, index 4, binding -1, stages 0
      ArrayedBind[0].a.b: offset 4, type 1406, size 1, index 4, binding -1, stages 0
      ArrayedBind[0].b.a: offset 4, type 1406, size 1, index 4, binding -1, stages 0
      ArrayedBind[0].b.b: offset 8, type 1406, size 1, index 4, binding -1, stages 0
      ArrayedBind[0].b: offset 4, type 1406, size 1, index 4, binding -1, stages 1
      
      When the outer reflection loop that calls blowUpActiveAggregate incorrectly iterates over the struct members.