~pcsx2-team/pcsx2-github-mirror/+git/glslang:revert-ANGLE

Last commit made on 2020-07-13
Get this branch:
git clone -b revert-ANGLE https://git.launchpad.net/~pcsx2-team/pcsx2-github-mirror/+git/glslang

Branch merges

Branch information

Name:
revert-ANGLE
Repository:
lp:~pcsx2-team/pcsx2-github-mirror/+git/glslang

Recent commits

07211b4... by John Kessenich <email address hidden>

Fix comma in licence checker.

4f32f93... by John Kessenich <email address hidden>

Revert "Merge pull request #2330 from ShabbyX/optimize_for_angle"

This reverts commit 1ee5d1c0bb683daea245e8329fd619940a35a5b4, reversing
changes made to 906d48a7e828701e25487c9cf34418ded831c814.

5799f5b... by John Kessenich <email address hidden>

Fix a couple lines that were too long, to retrigger bots.

4e13c90... by John Kessenich <email address hidden>

Fix #2329: don't use invalid initializers.

2068869... by John Kessenich <email address hidden>

Merge pull request #2334 from ben-clayton/license-checker-cfg

Add missing comma from license-checker.cfg

6788647... by Ben Clayton <email address hidden>

Add missing comma from license-checker.cfg

Fixes license checker presubmit.

09ea6fa... by John Kessenich <email address hidden>

Merge pull request #2333 from 1480c1/mingw-w64

Common: include standard headers before doing any defines

8486b2e... by Christopher Degawa

Common: include standard headers before doing any defines

currently, due to

```c++
\#if (defined(_MSC_VER) && _MSC_VER < 1900 /*vs2015*/) || defined MINGW_HAS_SECURE_API
    #include <basetsd.h>
    #ifndef snprintf
    #define snprintf sprintf_s
    #endif
    #define safe_vsprintf(buf,max,format,args) vsnprintf_s((buf), (max), (max), (format), (args))
```

defining `snprintf` to `sprintf_s` essentially unconditionally, this will break the
stdio.h+cstdio system header for mingw-w64 g++ in msys2 with shaderc
https://github.com/google/shaderc/issues/1065

an alternative change would be
https://raw.githubusercontent.com/shinchiro/mpv-winbuild-cmake/master/packages/glslang-0001-fix-gcc-10.1-error.patch
in which the `|| defined MINGW_HAS_SECURE_API` part is removed

Signed-off-by: Christopher Degawa <email address hidden>

1ee5d1c... by John Kessenich <email address hidden>

Merge pull request #2330 from ShabbyX/optimize_for_angle

Optimize for angle

906d48a... by John Kessenich <email address hidden>

Merge pull request #2332 from ben-clayton/fix-cmake-include

Fix CMake rules when nesting CMake projects