1. 03 Jul, 2020 6 commits
  2. 02 Jul, 2020 6 commits
  3. 01 Jul, 2020 6 commits
  4. 30 Jun, 2020 11 commits
  5. 29 Jun, 2020 5 commits
    • Fixed GCC -Wunused-parameter in hlslParseables.cpp. · f6e34463
      Evgeny Proydakov authored
      Warnings before fix:
      
      [3/7] Building CXX object glslang/CMakeFiles/glslang.dir/HLSL/hlslParseables.cpp.o
      ../glslang/HLSL/hlslParseables.cpp: In function ‘bool {anonymous}::IsValid(const char*, char, char, char, char, int, int)’:
      ../glslang/HLSL/hlslParseables.cpp:334:45: warning: unused parameter ‘retOrder’ [-Wunused-parameter]
        334 | inline bool IsValid(const char* cname, char retOrder, char retType, char argOrder, char argType, int dim0, int dim1)
            |                                        ~~~~~^~~~~~~~
      ../glslang/HLSL/hlslParseables.cpp:334:60: warning: unused parameter ‘retType’ [-Wunused-parameter]
        334 | inline bool IsValid(const char* cname, char retOrder, char retType, char argOrder, char argType, int dim0, int dim1)
            |                                                       ~~~~~^~~~~~~
      ../glslang/HLSL/hlslParseables.cpp:334:89: warning: unused parameter ‘argType’ [-Wunused-parameter]
        334 | inline bool IsValid(const char* cname, char retOrder, char retType, char argOrder, char argType, int dim0, int dim1)
            |                                                                                    ~~~~~^~~~~~~
      ../glslang/HLSL/hlslParseables.cpp:334:112: warning: unused parameter ‘dim1’ [-Wunused-parameter]
        334 | inline bool IsValid(const char* cname, char retOrder, char retType, char argOrder, char argType, int dim0, int dim1)
            |                                                                                                            ~~~~^~~~
    • CMake: Compile with -fPIC when building SOs · 981e1276
      Ben Clayton authored
      Without this embedding static libraries into shared libraries may result in link time errors.
      
      Issue: #2283
    • CMake: Error on unresolved symbols · 1fee6072
      Ben Clayton authored
      Issue: #1484
    • Remove root kokoro/linux-*-cmake configs · 08bc7cf5
      Ben Clayton authored
      These have been superseded by the `static` and `shared` variants in the respective subdirectories.
      
      Issue: #2283
    • Merge pull request #2286 from ben-clayton/kokoro-static-shared · 27e915ed
      John Kessenich authored
      Kokoro: Split linux cmake cfgs into static/shared
  6. 28 Jun, 2020 1 commit
  7. 26 Jun, 2020 2 commits
  8. 25 Jun, 2020 2 commits
  9. 24 Jun, 2020 1 commit
    • Kokoro: Split linux cmake cfgs into static/shared · 40e1ae11
      Ben Clayton authored
      Allows for testing of generation of both static libraries and shared objects.
      
      The old configs are staying in place until I'm confident everything is working correctly.
      
      Issues: #1421, #1484, #2283