summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty
Commit message (Collapse)AuthorAgeFilesLines
* 3rdparty: Retired softfloat2. (#15270) Patrick Mackinlay2026-04-2815-8655/+74
| | | cpu/i386, machine/i8087.cpp: Migrated to SoftFloat 3.
* build: Add support for VS2026; 3rdparty/genie: Local fixes: Patrick Mackinlay2026-04-107-85/+94
| | | | | | * Local fix for GENie resource include directory bug, sent upstream as bkaradzic/GENie#572 * Local fix to disable broken command line escaping * Local fix to use MPARAM instead of hard-coded -m64
* 3rdparty/genie: Sync with upstream 1196. Patrick Mackinlay2026-04-1035-371/+1004
|
* 3rdparty/asmjit: Sync with upstream version 1.21. (#15205) Patrick Mackinlay2026-04-09222-2042/+17653
| | | From asmjit/asmjit@0bd5787b54b575ed94bf32ac452153b34385c514
* i386: qword ptr also needs the fix cracyc2026-03-071-0/+3
|
* i386: fix softfloat with gcc 15 optimizer cracyc2026-03-061-0/+2
|
* 3rdparty/ymfm: Fixed endianness and alignment issues when writing WAV files. Vas Crabb2025-12-121-9/+28
|
* ymfm: adpcm updates from https://github.com/aaronsgiles/ymfm/pull/40 [Aaron ↵ hap2025-11-304-189/+351
| | | | Giles]
* 3rdparty/ymfm/src/ymfm_adpcm.h: extend at_end fn by 1 angelosa2025-11-231-1/+1
| | | | * pc98:metlfrce wants this to detect the speakboard, cfr. note in header card
* Fixed up a pile of stuff and commented out games added without credits. Vas Crabb2025-10-312-1/+2
| | | | | | | | * You actually need to add copyright notices when adding stuff in 3rdparty. * bus/bk: Fixed bad exposed class. * Metadata fixes. * Got rid of non-const function statics.
* 3rdparty/asmjit: Sync with upstream version 1.20. (#14330) Patrick Mackinlay2025-10-16242-49275/+81144
| | | From https://github.com/asmjit/asmjit/commit/5134d396bd00c1b63259387acdbb12dfdf009f9b
* pgm3.cpp - bootstrap first decrypted block from internal Flash [Peter ↵ mamehaze2025-10-033-0/+1246
| | | | Wilhelmsen, David Haywood] (#14259)
* 3rdparty/bgfx: Fix SPIRV shader builder compilation error with newer ↵ Vas Crabb2025-08-011-0/+1
| | | | standard library that doesn't implicitly include stdint in as many places.
* Various GNU/Hurd fixes (#13792) Pino Toscano2025-06-093-34/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * bx: Small platform detection/usage improvements * Use BX_PLATFORM_POSIX where needed The semaphone implementation already uses BX_PLATFORM_POSIX to include <pthread.h> on all the POSIX platforms; do the same also in other places for consistency. This is done also for <sched.h>, which is a POSIX API, and sched_yield() from it is already guarded by BX_PLATFORM_POSIX. * Drop support for GNU libc older than 2.12 glibc 2.12 was released on 2010, and at this point any supported Linux distro has that version or way greather than that. From bkaradzic/bx@b59b7debd32260750c2af71f62585d9b438b3b96 * bx: fix <pthread/pthread.h> include on Hurd <pthread/pthread.h> does not exist, the standard <pthread.h> does exist so switch to it. * osd/modules/file: use dirent::d_type on any GNU libc platform This BSD extension is provided by GNU libc, so enable its usage with that C library. * osd/modules/file: use <pty.h> on any GNU libc platform openpty() is implemented by GNU libc for all the OSes, so include <pty.h> when using that C library. * osd/modules/file: cast dirent::d_name to const char* before using it According to POSIX [1], the type of dirent::d_name is loosely defined as "char d_name[]", as array with an undefined size. In particular, few ways are seen in the wild: (a) "char d_name[size]", i.e. as proper array with a full size (b) "char d_name[1]"/"char d_name[0]", i.e. as C flexible arrays Regardless of its type, dirent::d_name is used as if it was a classic const char *, i.e. as pointer to a null-terminated string. util::string_format() uses C++ templates to collect all the arguments, and thus it will use the actual type of dirent::d_name. In case of (a) there is no issue, however for (b) the result is that only the first character is used. To ensure that dirent::d_name is fully used, explicitly cast it to const char * before passing it to util::string_format(), so the whole string is used. [1] https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/dirent.h.html
* 3rdparty: cherry-pick upstream fixes for clangcl Patrick Mackinlay2025-05-132-15/+16
|
* 3rdparty/expat: Updated expat to version 2.7.1. (#13643) holub2025-05-0346-507/+3555
|
* Correct syntax for template instantiation Vas Crabb2025-04-211-1/+1
|
* Try helping the CI Olivier Galibert2025-04-211-0/+2
|
* 3rdparty/bgfx: Updated ImGui to 1.91.9b. Vas Crabb2025-04-2117-9119/+18984
| | | | | | | | | | | | | | This was not straightforward, and we're now ahead of the ImGui version in upstream bgfx. Updated the bgfx-specific memory editor widget rather than just partially removing the code. Had to add an explicit template instantiation to imgui_widgets.cpp to avoid a link error in the bgfx-specific range slider widget. Got the imgconfig.h header a lot closer to the template from upstream ImGui.
* 3rdparty/portmidi: Another undefined macro warning. Vas Crabb2025-04-201-1/+1
|
* 3rdparty/portmidi: Fixed more discarded const and undefined macro errors. Vas Crabb2025-04-201-4/+4
|
* 3rdparty/portmidi: Fix the right uninitialised local variable. Vas Crabb2025-04-201-2/+2
|
* 3rdparty/portmidi: Fixed more macOS errors. Vas Crabb2025-04-202-4/+4
|
* 3rdparty/portmidi: More cases of ignoring const in the macOS code. Vas Crabb2025-04-204-6/+6
|
* 3rdparty/portmidi: Another batch of K&R function declarations that upset clang. Vas Crabb2025-04-205-12/+12
|
* 3rdparty/portmidi: Another place that needs const hit by Linux. Vas Crabb2025-04-202-2/+2
|
* 3rdparty/portmidi: Fixes for Linux and clang builds. Vas Crabb2025-04-201-1/+1
|
* 3rdparty/softfloat3: Proper way to detect presence of __int128 on GCC/clang. Vas Crabb2025-04-201-5/+6
|
* 3rdparty/portmidi: Try to get PortMidi into a state where it will build with ↵ Vas Crabb2025-04-2011-37/+38
| | | | sane compiler settings.
* 3rdparty/portmidi: Updated to PortMidi 2.0.4. Vas Crabb2025-04-20133-17203/+8910
|
* 3rdparty/zlib: Updated to 1.3.1. (#13505) holub2025-03-2671-260/+3919
|
* softfloat: remove unused global LITTLEENDIAN/BIGENDIAN macros, as well as ↵ hap2025-03-152-15/+0
| | | | TRUE/FALSE macros
* 3rdparty/expat: Hopefully fix macOS build properly. Vas Crabb2025-03-121-0/+0
|
* 3rdparty/expat: Added dummy expat_config.h to hopefully fix macOS buid. Vas Crabb2025-03-121-0/+6
|
* 3rdparty/expat: Updated to expat 2.6.4. Vas Crabb2025-03-12155-18813/+31630
|
* 3rdparty/lua: Updated to Lua 5.4.7. Vas Crabb2025-03-1253-1145/+1631
|
* ymfm_opl: no need to check for IsOpl2Plus here hap2025-02-011-1/+1
|
* ymfm_opl: actually emulate opl2 waveform enable bit hap2025-02-011-2/+2
|
* ymfm_opn: OPNA does not have 4 latches hap2025-01-311-3/+1
|
* Revert "ymfm_opn: writes to 0xa7/0xaf also go to latch" hap2025-01-311-1/+4
| | | | This reverts commit 659471456ae6d140ef9f86a15a0494ea0021fe51.
* ymfm_opn: writes to 0xa7/0xaf also go to latch hap2025-01-311-4/+1
|
* ymfm_opn: apparently there is no internal flag when latch was written hap2025-01-301-5/+4
|
* 3rdparty/ymfm: sync to latest (#13263) Angelo Salese2025-01-3014-85/+378
|
* cpu/drcbearm64.cpp: Added a 64-bit ARMv8 (AArch64) DRC back-end. (#13162) 9871238791132025-01-1441-1505/+1967
| | | | | * cpu/uml.cpp: Removed unused vector type. * 3rdparty/asmjit: Update asmjit to latest upstream. * cpu/drcbex64.cpp: Fixed crash with LOG_HASHJMPS enabled (stack needs to be 16-byte aligned before calling debug_log_hashjmp_fail).
* bgfx: fix compile error after ↵ hap2025-01-101-1/+1
| | | | https://github.com/mamedev/mame/commit/ba6f5853e9382a959af8ff81980c0f06a6ffe80e
* Cherry-pick wayland improvements from upstream bgfx (#13070) Julian Sikorski2025-01-0224-274/+317
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Properly support Wayland under EGL and Vulkan. (#3358) * Dynamically load libwayland-egl.so.1 when dealing with Wayland to remove dependencies at program startup. (#3359) * Cleanup. * Support both X11 and Wayland in the same build. (#3360) * Support both X11 and Wayland in the same build. - Works for both Vulkan and OpenGL. - Remove --with-wayland from genie options. - Vulkan loads all three extensions for surface creation instead of only one. - Add width and height parameter to GlContext::createSwapChain(), which is needed for EGL to create a SwapChain with the given window size. - Dirty-fix the example-22-windows to recreate the FrameBuffer by first destroying and then recreating to make sure the window is released of its swapchain. - Fix dbgText glitch in example-22-windows. - Remove old X11-related dependencies for GLFW3. * Formatting. * Adapt to latest bgfx wayland code * Cleanup. * Fix Vulkan swapchain invalidation issue. (#3379) * Fix Vulkan swapchain invalidation issue. * Always clamp render pass to frame buffer size. * Fix formatting. * Hopefully fix macOS build * Hopefully fix macOS build, attempt 2 --------- Co-authored-by: Martijn Courteaux <courteauxmartijn@gmail.com> Co-authored-by: Бранимир Караџић <branimirkaradzic@gmail.com>
* genie: disable command line string escaping, fixes #13150 Patrick Mackinlay2025-01-022-18/+7
|
* genie: restore MPARAM for non-Windows OS builds Patrick Mackinlay2024-12-093-40/+40
|
* fix windows build Patrick Mackinlay2024-11-281-10/+10
| | | | | * use MPARAM for GENie build architecture * avoid escaping issue in 3rdparty/expat
* Updated GENie and changed Visual Studio target to Visual Studio 2022. (#13000) Patrick Mackinlay2024-11-2760-2677/+1726
| | | | | * Updated to GENie 1181. * Applied local fix for GENie resource include directory bug, sent upstream as bkaradzic/GENie#572. * Set MSVC flags to use conformant preprocessor, standards conformance mode, and assume UTF-8 encoding.