1. 19 Mar, 2018 1 commit
  2. 17 Mar, 2018 2 commits
  3. 16 Mar, 2018 8 commits
  4. 14 Mar, 2018 1 commit
  5. 13 Mar, 2018 5 commits
    • Fix build several build errors · bfe09521
      Daniel Koch authored
      glslang/SPIRV/SpvBuilder.cpp:2533:27: error: comparison of integers of different signs: 'int' and 'size_type' (aka 'unsigned long') [-Werror,-Wsign-compare]
              for (int c = 0; c < accessChain.swizzle.size(); ++c)
                              ~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~
      1 error generated.
      
      glslang/hlsl/hlslParseHelper.cpp:69:5: error: field 'cullDistanceInput' will be initialized after field 'clipDistanceOutput' [-Werror,-Wreorder]
          cullDistanceInput(nullptr),
          ^
      1 error generated.
      
      glslang/glslang/MachineIndependent/attribute.cpp:85:16: error: comparison of integers of different signs: 'int' and 'size_type' (aka 'unsigned long') [-Werror,-Wsign-compare]
          if (argNum >= args->getSequence().size())
              ~~~~~~ ^  ~~~~~~~~~~~~~~~~~~~~~~~~~~
      1 error generated.
    • Merge pull request #1293 from baldurk/remove-en-dash · 3e2a3c46
      John Kessenich authored
      Replace en-dash with simple ASCII hyphen
    • Replace en-dash with simple ASCII hyphen · 34cd7630
      Baldur Karlsson authored
      * This means the source file is ASCII instead of (assumed) UTF-8 and
        doesn't cause warnings when compiling on non-western codepages.
    • Use the correct type for the constant for matrix/scalar division · eddb1318
      Neil Roberts authored
      When a matrix is divided by a scalar it tries to take the reciprocal
      of the scalar to convert the operation into a multiply. However it was
      always doing this by making a 32-bit constant. If the scalar is a
      double then this would end up making an FDiv instruction with
      different types in the operands.
      
      This patch adds a helper method called makeFpConstant which makes a
      floating-point constant of the given type. The code to take the
      reciprocal now uses it to make the same type as the result.
      
      Fixes https://github.com/KhronosGroup/glslang/issues/1278
  6. 12 Mar, 2018 4 commits
  7. 11 Mar, 2018 1 commit
  8. 10 Mar, 2018 2 commits
  9. 08 Mar, 2018 4 commits
  10. 07 Mar, 2018 12 commits