Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #12851

Merged
merged 2 commits into from Oct 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion 3rdparty/SPIRV/SPIRV-Tools
Submodule SPIRV-Tools updated 134 files
2 changes: 1 addition & 1 deletion 3rdparty/glslang/glslang
Submodule glslang updated 44 files
+1 −1 .appveyor.yml
+25 −23 .github/workflows/continuous_deployment.yml
+1 −1 .github/workflows/continuous_integration.yml
+46 −46 .github/workflows/deploy.js
+7 −0 CHANGES.md
+37 −1 CMakeLists.txt
+14 −3 OGLCompilersDLL/CMakeLists.txt
+15 −3 SPIRV/CInterface/spirv_c_interface.cpp
+25 −20 SPIRV/CMakeLists.txt
+1 −0 SPIRV/GLSL.ext.KHR.h
+41 −6 SPIRV/GlslangToSpv.cpp
+24 −20 SPIRV/doc.cpp
+7 −0 SPIRV/spirv.hpp
+40 −16 StandAlone/CMakeLists.txt
+51 −0 Test/baseResults/rayQuery-OpConvertUToAccelerationStructureKHR.comp.out
+43 −0 Test/baseResults/spv.1.6.samplerBuffer.frag.out
+52 −0 Test/baseResults/spv.1.6.separate.frag.out
+41 −0 Test/baseResults/spv.earlyAndlateFragmentTests.frag.out
+58 −0 Test/baseResults/spv.imageAtomic64.comp.out
+1 −0 Test/baseResults/spv.shaderStencilExport.frag.out
+15 −0 Test/rayQuery-OpConvertUToAccelerationStructureKHR.comp
+11 −0 Test/spv.1.6.samplerBuffer.frag
+14 −0 Test/spv.1.6.separate.frag
+12 −0 Test/spv.earlyAndlateFragmentTests.frag
+12 −0 Test/spv.imageAtomic64.comp
+12 −12 build_info.h.tmpl
+11 −0 glslang/CInterface/glslang_c_interface.cpp
+21 −13 glslang/CMakeLists.txt
+2 −0 glslang/Include/BaseTypes.h
+35 −0 glslang/Include/Types.h
+13 −0 glslang/Include/glslang_c_interface.h
+1 −0 glslang/MachineIndependent/Initialize.cpp
+50 −8 glslang/MachineIndependent/ParseHelper.cpp
+1 −1 glslang/MachineIndependent/SymbolTable.cpp
+2 −1 glslang/MachineIndependent/SymbolTable.h
+1 −0 glslang/MachineIndependent/Versions.cpp
+5 −0 glslang/MachineIndependent/Versions.h
+18 −2 glslang/MachineIndependent/localintermediate.h
+13 −3 glslang/OSDependent/Unix/CMakeLists.txt
+13 −3 glslang/OSDependent/Windows/CMakeLists.txt
+13 −3 gtests/CMakeLists.txt
+4 −0 gtests/Spv.FromFile.cpp
+12 −10 hlsl/CMakeLists.txt
+2 −2 known_good.json
2 changes: 1 addition & 1 deletion 3rdparty/libpng/libpng
2 changes: 1 addition & 1 deletion 3rdparty/zlib/zlib
Submodule zlib updated 95 files
+89 −0 .github/workflows/cmake.yml
+136 −0 .github/workflows/configure.yml
+25 −0 .github/workflows/fuzz.yml
+3 −39 CMakeLists.txt
+18 −6 ChangeLog
+22 −0 LICENSE
+8 −12 Makefile.in
+2 −2 README
+3 −3 compress.c
+46 −51 configure
+1 −1 contrib/README.contrib
+1 −1 contrib/delphi/ZLib.pas
+1 −1 contrib/dotzlib/DotZLib/UnitTests.cs
+2 −2 contrib/infback9/inftree9.c
+1 −1 contrib/infback9/inftree9.h
+1 −1 contrib/minizip/configure.ac
+1 −1 contrib/minizip/crypt.h
+11 −11 contrib/minizip/ioapi.c
+1 −1 contrib/minizip/ioapi.h
+5 −0 contrib/minizip/iowin32.c
+1 −1 contrib/minizip/miniunz.c
+3 −3 contrib/minizip/minizip.c
+3 −1 contrib/minizip/unzip.c
+1 −6 contrib/minizip/zip.c
+1 −1 contrib/pascal/zlibpas.pas
+1 −1 contrib/puff/README
+2 −2 contrib/puff/puff.c
+1 −1 contrib/puff/pufftest.c
+1 −4 contrib/vstudio/readme.txt
+1 −1 contrib/vstudio/vc10/miniunz.vcxproj.filters
+1 −1 contrib/vstudio/vc10/minizip.vcxproj.filters
+8 −16 contrib/vstudio/vc10/testzlib.vcxproj
+1 −4 contrib/vstudio/vc10/testzlib.vcxproj.filters
+1 −1 contrib/vstudio/vc10/testzlibdll.vcxproj.filters
+3 −3 contrib/vstudio/vc10/zlib.rc
+13 −37 contrib/vstudio/vc10/zlibstat.vcxproj
+0 −3 contrib/vstudio/vc10/zlibstat.vcxproj.filters
+17 −41 contrib/vstudio/vc10/zlibvc.vcxproj
+0 −3 contrib/vstudio/vc10/zlibvc.vcxproj.filters
+8 −16 contrib/vstudio/vc11/testzlib.vcxproj
+3 −3 contrib/vstudio/vc11/zlib.rc
+13 −21 contrib/vstudio/vc11/zlibstat.vcxproj
+17 −41 contrib/vstudio/vc11/zlibvc.vcxproj
+8 −16 contrib/vstudio/vc12/testzlib.vcxproj
+3 −3 contrib/vstudio/vc12/zlib.rc
+13 −21 contrib/vstudio/vc12/zlibstat.vcxproj
+17 −41 contrib/vstudio/vc12/zlibvc.vcxproj
+8 −16 contrib/vstudio/vc14/testzlib.vcxproj
+3 −3 contrib/vstudio/vc14/zlib.rc
+13 −21 contrib/vstudio/vc14/zlibstat.vcxproj
+17 −41 contrib/vstudio/vc14/zlibvc.vcxproj
+1 −1 contrib/vstudio/vc9/miniunz.vcproj
+1 −1 contrib/vstudio/vc9/minizip.vcproj
+5 −61 contrib/vstudio/vc9/testzlib.vcproj
+1 −1 contrib/vstudio/vc9/testzlibdll.vcproj
+3 −3 contrib/vstudio/vc9/zlib.rc
+11 −65 contrib/vstudio/vc9/zlibstat.vcproj
+13 −69 contrib/vstudio/vc9/zlibvc.vcproj
+21 −12 crc32.c
+112 −106 deflate.c
+2 −2 deflate.h
+1 −1 examples/enough.c
+2 −2 examples/fitblk.c
+1 −1 examples/gun.c
+2 −2 examples/gzappend.c
+1 −1 examples/gzlog.h
+1 −1 examples/zran.c
+1 −1 gzlib.c
+3 −5 gzread.c
+1 −1 gzwrite.c
+10 −7 infback.c
+5 −2 inflate.c
+2 −2 inftrees.c
+1 −1 inftrees.h
+2 −2 make_vms.com
+3 −3 os400/README400
+8 −0 os400/bndsrc
+3 −3 os400/zlib.inc
+5 −5 qnx/package.qpg
+2 −1 test/example.c
+1 −1 test/minigzip.c
+2 −2 treebuild.xml
+61 −62 trees.c
+2 −2 uncompr.c
+2 −2 win32/README-WIN32.txt
+1 −1 win32/zlib1.rc
+16 −3 zconf.h
+16 −3 zconf.h.cmakein
+16 −3 zconf.h.in
+2 −2 zlib.3
+ zlib.3.pdf
+10 −10 zlib.h
+2 −2 zlib2ansi
+9 −7 zutil.c
+1 −0 zutil.h
2 changes: 1 addition & 1 deletion rpcs3/Emu/System.cpp
Expand Up @@ -2288,7 +2288,7 @@ std::shared_ptr<utils::serial> Emulator::Kill(bool allow_autoexit, bool savestat

named_thread stop_watchdog("Stop Watchdog", [&]()
{
for (uint i = 0; thread_ctrl::state() != thread_state::aborting;)
for (int i = 0; thread_ctrl::state() != thread_state::aborting;)
{
// We don't need accurate timekeeping, using clocks may interfere with debugging
if (i >= (savestate ? 2000 : 1000))
Expand Down