1. 15 Jan, 2020 1 commit
  2. 10 Jan, 2020 1 commit
  3. 08 Jan, 2020 4 commits
  4. 07 Jan, 2020 3 commits
  5. 06 Jan, 2020 4 commits
  6. 03 Jan, 2020 1 commit
    • Fix glslang can't link multiple AST in a single stage · 05a5b532
      Roy authored
      Root cause:
      GlslangToSpv use symbol structure's ptr as a map key, but multiple shader object can build a new AST.
      In the AST the the same symbol has different ptr point to their structure, so indext map faild.
      
      solution:
      Add a new map glslangTypeToIdMap to map ptr to symbol id, and use symbol id to index memberRemapper.
  7. 30 Dec, 2019 5 commits
  8. 26 Dec, 2019 1 commit
  9. 25 Dec, 2019 2 commits
    • atomic counter offset should align to 4 · 5db058c0
      Chow authored
      atomic counter offset should align to 4
      Ref:
      glspec46.core - 6.8 BufferObjectState
      offset restriction multiple of 4
    • Modify atomic_uint binding check · 891ec09c
      Chow authored
      Modify atomic_uint binding check.
      
      Currently, when not declared with offset, default atomic_unint won't check whether its binding is valid or not more than its limit value.
  10. 23 Dec, 2019 3 commits
  11. 20 Dec, 2019 1 commit
  12. 13 Dec, 2019 1 commit
  13. 12 Dec, 2019 1 commit
  14. 10 Dec, 2019 2 commits
  15. 09 Dec, 2019 5 commits
  16. 05 Dec, 2019 1 commit
  17. 04 Dec, 2019 2 commits
  18. 03 Dec, 2019 2 commits
    • INTEL_shader_integer_functions2: Add SPIR-V generation · b3bd402c
      Ian Romanick authored
      v2: Move addCapability and addExtension extension calls from
      TGlslangToSpvTraverser::createBinaryOperation to
      TGlslangToSpvTraverser::visitAggregate.  Suggested by JohnK.
    • INTEL_shader_integer_functions2: Add compiler front-end support · fbcdcac2
      Ian Romanick authored
      The changes to glslang/glslang/MachineIndependent/ParseHelper.cpp exist
      purely to prevent even more instances of "warning: enumeration value
      ‘EOp...’ not handled in switch"
      
      v2: Remove 8-bit types.  Overzealous copy-and-paste led to adding
      support for a bunch of types that the extension doesn't actually enable.
      
      v3: Update expected test results file.  Just changing an expected
      results file to make a test pass seems sketchy to me, but I'm not sure
      what else to do.
      
      v4: Add missing entry for EOpAbsDifference in
      TOutputTraverser::visitBinary.  Noticed by JohnK.