[PR #99] [MERGED] More modules #1291

Closed
opened 2026-02-27 21:11:57 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/99
Author: @georgemoralis
Created: 3/14/2024
Status: Merged
Merged: 3/22/2024
Merged by: @georgemoralis

Base: mainHead: modules2


📝 Commits (10+)

📊 Changes

27 files changed (+1861 additions, -50 deletions)

View changed files

📝 .gitmodules (+3 -7)
📝 CMakeLists.txt (+10 -8)
📝 externals/CMakeLists.txt (+10 -11)
externals/sdl3 (+1 -0)
📝 externals/zlib-ng (+1 -1)
externals/zlib-ng-win (+0 -1)
src/audio_core/sdl_audio.cpp (+111 -0)
src/audio_core/sdl_audio.h (+41 -0)
📝 src/common/logging/filter.cpp (+1 -0)
📝 src/common/logging/types.h (+1 -0)
📝 src/core/hle/libraries/libkernel/file_system.cpp (+24 -0)
📝 src/core/hle/libraries/libkernel/file_system.h (+1 -0)
📝 src/core/hle/libraries/libs.cpp (+2 -0)
src/core/libraries/libsceaudioout.cpp (+573 -0)
src/core/libraries/libsceaudioout.h (+108 -0)
📝 src/emulator.cpp (+10 -2)
📝 src/emulator.h (+2 -1)
📝 src/vulkan_util.cpp (+9 -13)
📝 third-party/CMakeLists.txt (+0 -5)
third-party/SDL (+0 -1)

...and 7 more files

📄 Description

Initial work on sceAudioOut


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/shadps4-emu/shadPS4/pull/99 **Author:** [@georgemoralis](https://github.com/georgemoralis) **Created:** 3/14/2024 **Status:** ✅ Merged **Merged:** 3/22/2024 **Merged by:** [@georgemoralis](https://github.com/georgemoralis) **Base:** `main` ← **Head:** `modules2` --- ### 📝 Commits (10+) - [`ec988b7`](https://github.com/shadps4-emu/shadPS4/commit/ec988b7bea1030102454c45c86feaae4ac4c0050) added dummy sceAudio lib - [`28a5b1f`](https://github.com/shadps4-emu/shadPS4/commit/28a5b1f0b339f1f0a5dde6ac04a5e5454b9be77c) added lseek in file_system - [`6a3ee0f`](https://github.com/shadps4-emu/shadPS4/commit/6a3ee0f8d632914e668e282d035b4afdb69e2866) updated sdl3 - [`8c383c1`](https://github.com/shadps4-emu/shadPS4/commit/8c383c1f8b110ae616f0673d6f0e35984e871ad8) forgot sdl3 in cmake - [`b104042`](https://github.com/shadps4-emu/shadPS4/commit/b10404237a926373b34c38d0eb7939d77b65f8b1) cmake is case sensitive in linux - [`c6262eb`](https://github.com/shadps4-emu/shadPS4/commit/c6262eb0851f88c3f9ba9253d708be3c830aac72) fixed SDL_CreateWindowWithPosition - [`716eb09`](https://github.com/shadps4-emu/shadPS4/commit/716eb09d3cde7bef34f44dfbd47d5326dd2c67b5) fixed vulkan issues with latest sdl3 - [`57dd19f`](https://github.com/shadps4-emu/shadPS4/commit/57dd19f798a6e7d68a9a250aad1990f2324e4767) some progress in sceAudio - [`c9076e4`](https://github.com/shadps4-emu/shadPS4/commit/c9076e4ef937867893d4e246f6b73ce69a65f00c) improvements in audio - [`de82dea`](https://github.com/shadps4-emu/shadPS4/commit/de82dea7f199bb49efd9cc100a875bd54f677ffb) more sound improvements ### 📊 Changes **27 files changed** (+1861 additions, -50 deletions) <details> <summary>View changed files</summary> 📝 `.gitmodules` (+3 -7) 📝 `CMakeLists.txt` (+10 -8) 📝 `externals/CMakeLists.txt` (+10 -11) ➕ `externals/sdl3` (+1 -0) 📝 `externals/zlib-ng` (+1 -1) ➖ `externals/zlib-ng-win` (+0 -1) ➕ `src/audio_core/sdl_audio.cpp` (+111 -0) ➕ `src/audio_core/sdl_audio.h` (+41 -0) 📝 `src/common/logging/filter.cpp` (+1 -0) 📝 `src/common/logging/types.h` (+1 -0) 📝 `src/core/hle/libraries/libkernel/file_system.cpp` (+24 -0) 📝 `src/core/hle/libraries/libkernel/file_system.h` (+1 -0) 📝 `src/core/hle/libraries/libs.cpp` (+2 -0) ➕ `src/core/libraries/libsceaudioout.cpp` (+573 -0) ➕ `src/core/libraries/libsceaudioout.h` (+108 -0) 📝 `src/emulator.cpp` (+10 -2) 📝 `src/emulator.h` (+2 -1) 📝 `src/vulkan_util.cpp` (+9 -13) 📝 `third-party/CMakeLists.txt` (+0 -5) ➖ `third-party/SDL` (+0 -1) _...and 7 more files_ </details> ### 📄 Description Initial work on sceAudioOut --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 21:11:57 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/shadPS4#1291
No description provided.