1. 18 Mar, 2020 1 commit
  2. 17 Mar, 2020 3 commits
  3. 16 Mar, 2020 1 commit
  4. 11 Mar, 2020 3 commits
  5. 10 Mar, 2020 4 commits
  6. 09 Mar, 2020 5 commits
  7. 07 Mar, 2020 1 commit
  8. 06 Mar, 2020 5 commits
  9. 05 Mar, 2020 2 commits
  10. 04 Mar, 2020 3 commits
  11. 03 Mar, 2020 2 commits
  12. 01 Mar, 2020 2 commits
  13. 28 Feb, 2020 5 commits
  14. 27 Feb, 2020 1 commit
  15. 22 Feb, 2020 2 commits
    • Merge pull request #2090 from amdrexu/bugfix · 07e1a0a6
      John Kessenich authored
      Fix an issue of SPV generation for imageAtomicStore.
    • Fix an issue of SPV generation for imageAtomicStore. · fb18b6df
      Rex Xu authored
      For GLSL function imageAtomicStore, it will be translated to
      OpImageTexelPointer + OpAtomicStore. The result type of
      OpImageTexelPointer must be the same as the sampled type of OpTypeImage.
      On translation, the result type is mistakenly fetched from operand list
      operands[2] while operands[2] corresponds to sampleNum whose type is
      always uint. This leads to an error if the image type is iimageXXX that is
      int image.