1. 10 Feb, 2017 1 commit
  2. 09 Feb, 2017 5 commits
  3. 08 Feb, 2017 1 commit
  4. 07 Feb, 2017 11 commits
  5. 02 Feb, 2017 3 commits
  6. 31 Jan, 2017 1 commit
  7. 30 Jan, 2017 2 commits
  8. 27 Jan, 2017 1 commit
  9. 26 Jan, 2017 6 commits
  10. 25 Jan, 2017 1 commit
  11. 24 Jan, 2017 4 commits
  12. 23 Jan, 2017 2 commits
  13. 21 Jan, 2017 2 commits
    • Merge pull request #678 from chaoc/stereo_view_rendering · 64b010f3
      John Kessenich authored
      support SPV_NV_viewport_array2 and SPV_NV_stereo_view_rendering
    • CMake: add target_link_libraries internally · 6077a19b
      Michael Maltese authored
      Makes it easier to include glslang in a larger CMake project---instead
      of having to call `target_link_libraries(glslang OSDependent OGLCompiler
      HLSL)`, for example, you only need to call
      `target_link_libraries(glslang)` and it will pull in the helpers it
      needs.
      
      This is also better in terms of cleaning up the "public interface",
      of sorts, for building glslang: end-users probably shouldn't need to
      know or be explicitly dependent on internal targets.