diff --git a/glslang/Include/revision.h b/glslang/Include/revision.h index 342a3330..9d2eef71 100644 --- a/glslang/Include/revision.h +++ b/glslang/Include/revision.h @@ -2,5 +2,5 @@ // For the version, it uses the latest git tag followed by the number of commits. // For the date, it uses the current date (when then script is run). -#define GLSLANG_REVISION "SPIRV99.1330" +#define GLSLANG_REVISION "SPIRV99.1331" #define GLSLANG_DATE "21-Jul-2016" diff --git a/glslang/MachineIndependent/linkValidate.cpp b/glslang/MachineIndependent/linkValidate.cpp index 1cda57d3..ce2a38ca 100644 --- a/glslang/MachineIndependent/linkValidate.cpp +++ b/glslang/MachineIndependent/linkValidate.cpp @@ -940,7 +940,7 @@ int TIntermediate::getBaseAlignment(const TType& type, int& size, int& stride, b // components each, according to rule (4). // // 6. If the member is an array of S column-major matrices with C columns and - // R rows, the matrix is stored identically to a row of S  C column vectors + // R rows, the matrix is stored identically to a row of S X C column vectors // with R components each, according to rule (4). // // 7. If the member is a row-major matrix with C columns and R rows, the matrix @@ -948,7 +948,7 @@ int TIntermediate::getBaseAlignment(const TType& type, int& size, int& stride, b // according to rule (4). // // 8. If the member is an array of S row-major matrices with C columns and R - // rows, the matrix is stored identically to a row of S  R row vectors with C + // rows, the matrix is stored identically to a row of S X R row vectors with C // components each, according to rule (4). // // 9. If the member is a structure, the base alignment of the structure is N , where