1. 09 Jun, 2016 2 commits
  2. 08 Jun, 2016 3 commits
  3. 07 Jun, 2016 1 commit
  4. 06 Jun, 2016 5 commits
  5. 05 Jun, 2016 3 commits
  6. 04 Jun, 2016 1 commit
  7. 03 Jun, 2016 11 commits
  8. 02 Jun, 2016 3 commits
  9. 01 Jun, 2016 1 commit
  10. 31 May, 2016 2 commits
  11. 30 May, 2016 1 commit
  12. 25 May, 2016 6 commits
  13. 24 May, 2016 1 commit
    • Fix test case for the "empty" linker test case · 0bb546f8
      Thomas Perl authored
      The test result should only give one error about linking
      ES and non-ES shading language compilation units:
      
       - empty.frag: No version info, interpreted as 100, ES
       - empty2.frag: No version info, interpreted as 100, ES
       - empty3.frag: Version declared as 110, non-ES
      
      Previously, because the new intermediate is always created
      without version/profile information, there would be two
      linker errors:
      
       1.) When merging the new intermediate with empty.frag
       2.) When merging (new intermediate + empty.frag + empty2.frag) with empty3.frag
      
      Now, there is only one error; as the error with merging the
      new intermediate with empty.frag has been removed.