depedencies updates and fixes

This commit is contained in:
georgemoralis 2024-06-10 14:04:32 +03:00
parent 4287bfcb91
commit 13cd22aea6
13 changed files with 19 additions and 13 deletions

2
externals/cryptopp vendored

@ -1 +1 @@
Subproject commit 782057f5f18fbdad2bd2b291fb1ec558a8ab8225 Subproject commit 9bb6680cfaedd3d46eff082ede8d0c76be6a2145

@ -1 +1 @@
Subproject commit 19cd13af5f7fa4904b174b81e98852283dbe8c1f Subproject commit 2c384c28265a93358a2455e610e76393358794df

2
externals/fmt vendored

@ -1 +1 @@
Subproject commit d2473b7b73c0af2a3ed34c99e50ace0a1040581a Subproject commit 18a325f370ffd5ec1eda0087d2efc3dc9b3faf56

2
externals/glslang vendored

@ -1 +1 @@
Subproject commit 2b19bf7e1bc0b60cf2fe9d33e5ba6b37dfc1cc83 Subproject commit 73eccd4b67985d344578cade8958214cee0a3f6e

@ -1 +1 @@
Subproject commit db0b726c051f2d631b85793038677caf467a7cfe Subproject commit bf3c74ab7eded2a7183a3729f5cd36bc367edb08

2
externals/sdl3 vendored

@ -1 +1 @@
Subproject commit bcbf09acdef71b550e837c8aaca67b08b6a38f0f Subproject commit 4fc68a48f20574326eb18022eed0b7c0fa52a10e

2
externals/sirit vendored

@ -1 +1 @@
Subproject commit 8c281cc0b7cd638d3853a5aa2fc35b969fcbb599 Subproject commit fc65ebb5b56b849b1205d5baa2ca38440096652d

2
externals/vma vendored

@ -1 +1 @@
Subproject commit eaf8fc27eeadf6f21b11183651b829e897f01957 Subproject commit 7942b798289f752dc23b0a79516fd8545febd718

@ -1 +1 @@
Subproject commit 192d051db3382e213f8bd9d8048fc9eaa78ed6ab Subproject commit d192041a2fc9c9fd8ae67d8ae3f32c5511541f04

2
externals/zlib-ng vendored

@ -1 +1 @@
Subproject commit 1007e7a9c74148fe915384d7cc44921559500241 Subproject commit 2e3e5f30a05ee7b113c755ad9a075304e02bc328

View File

@ -4,6 +4,9 @@
#include <common/assert.h> #include <common/assert.h>
#include <core/libraries/error_codes.h> #include <core/libraries/error_codes.h>
#include "sdl_audio.h" #include "sdl_audio.h"
#include <SDL3/SDL_init.h>
#include <SDL3/SDL_audio.h>
#include <SDL3/SDL_timer.h>
namespace Audio { namespace Audio {

View File

@ -4,8 +4,7 @@
#pragma once #pragma once
#include <mutex> #include <mutex>
#include <SDL.h> #include <SDL3/SDL_audio.h>
#include "core/libraries/audio/audioout.h" #include "core/libraries/audio/audioout.h"
namespace Audio { namespace Audio {

View File

@ -1,7 +1,7 @@
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project // SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
#include <SDL.h>
#include "common/assert.h" #include "common/assert.h"
#include "common/config.h" #include "common/config.h"
@ -9,6 +9,10 @@
#include "core/libraries/pad/pad.h" #include "core/libraries/pad/pad.h"
#include "input/controller.h" #include "input/controller.h"
#include "sdl_window.h" #include "sdl_window.h"
#include <SDL3/SDL_init.h>
#include <SDL3/SDL_properties.h>
#include <SDL3/SDL_video.h>
#include <SDL3/SDL_events.h>
namespace Frontend { namespace Frontend {