1. 06 Jun, 2017 2 commits
  2. 05 Jun, 2017 3 commits
  3. 04 Jun, 2017 2 commits
  4. 03 Jun, 2017 4 commits
  5. 02 Jun, 2017 2 commits
  6. 01 Jun, 2017 7 commits
  7. 31 May, 2017 1 commit
  8. 29 May, 2017 2 commits
    • Merge pull request #856 from TiemoJung/texture_upgrade · 136b1e2d
      John Kessenich authored
      Pure Texture to Sampled Texture Transform
    • Pure Texture to Sampled Texture Transform · baf570ef
      t.jung authored
      Adds a transformation step to the post processing step.
      Two modes are available:
      1) keep
      - Keeps samplers, textures and sampled textures as is
      2) transform pure texture into sampled texture and remove pure samplers
      - removes all pure samplers
      - transforms all pure textures into its sampled counter part
      
      Change-Id: If54972e8052961db66c23f4b7e719d363cf6edbd
  9. 25 May, 2017 2 commits
  10. 24 May, 2017 2 commits
  11. 21 May, 2017 1 commit
  12. 20 May, 2017 8 commits
  13. 19 May, 2017 3 commits
  14. 18 May, 2017 1 commit
    • Remapper: handle embedded opcode in OpSpecConstantOp · 65c2eed6
      LoopDawg authored
      OpSpecConstantOp contains an embedded opcode which is given as a literal
      argument to the OpSpecConstantOp.  The subsequent arguments are as the
      embedded op would expect, which may be a mixture of IDs and literals.  This
      adds support for that to the remapper binary parser.  Upon seeing such an
      embedded op, the parser flips over to parsing the argument list as
      appropriate for that opcode.
      
      Fixes #882.