summaryrefslogtreecommitdiff
path: root/src/common
AgeCommit message (Collapse)Author
2025-01-06common: Use consistent cache line size in RingBufferZephyron
Replace hardcoded 128-byte alignment with a defined CACHE_LINE_SIZE constant of 64 bytes for the atomic indices in RingBuffer. This value is more appropriate for most modern CPU architectures and simplifies the implementation by using a consistent value regardless of compiler support for hardware_interference_size. Changes: - Add CACHE_LINE_SIZE constant set to 64 bytes - Use CACHE_LINE_SIZE for atomic index alignment in both code paths - Remove outdated TODO comment about hardware_destructive_interference_size
2025-01-04core: Add support for 10GB and 12GB memory configurationsZephyron
- Add Memory_10Gb and Memory_12Gb to MemoryLayout enum - Update memory layout settings to support up to 12GB - Add SMC enums for 10GB and 12GB memory sizes and arrangements - Increase MainMemorySizeMax from 8GB to 12GB - Add memory pool size calculations for 10GB and 12GB configurations - Update UI translations for new memory options
2025-01-02impl(Multiplayer): Switched API To Enable MultiplayerZephyron
2024-12-31core: Update copyright headersZephyron
- Update copyright headers to include Citron Homebrew Project - Add 2025 to copyright years
2024-12-31chore: update project references and add Citron copyrightZephyron
- Replaced all references to the old project name with Citron. - Added Citron copyright information alongside existing notices in all files.
2024-02-26Merge pull request #13159 from liamwhite/web-errorliamwhite
core: enable error applet, add stubs for web applet
2024-02-26settings: remove global override for smash on amdvlkLiam
2024-02-24settings: enable error appletLiam
2024-02-24common/ring_buffer: Include <limits> headerwheremyfoodat
2024-02-23Merge pull request #13100 from liamwhite/audio-ipcliamwhite
audio: move to new ipc
2024-02-22Merge pull request #13001 from liamwhite/scaled-availabilityNarr the Reg
vulkan_device: don't use fixed cap for memory limits
2024-02-20audio: rewrite IAudioDeviceLiam
2024-02-19scope_exit: Make constexprFearlessTobi
Allows the use of the macro in constexpr-contexts. Also avoids some potential problems when nesting braces inside it.
2024-02-18vulkan_device: don't use fixed cap for memory limitsLiam
2024-02-17android: Input mappingt895
2024-02-11Merge pull request #12756 from liamwhite/applet-multiprocess-hwcNarr the Reg
general: applet multiprocess
2024-02-09Merge pull request #12920 from t895/jni-commonliamwhite
android: Move JNI setup and helpers to common
2024-02-09general: add default configurations for applet modeLiam
2024-02-08common: fs: Expand android macrost895
2024-02-08android: Move JNI setup and helpers to commont895
2024-02-08Merge pull request #12914 from FernandoS27/vc-refactorliamwhite
VideoCore Refactor Part 1.
2024-02-05Common: Rename SplitRangeSet to OverlapRangeSetFernando Sahmkow
2024-02-05typed_address: test values are unsignedLiam
2024-02-05Buffer Cache: Refactor to use Range sets insteadFernando Sahmkow
2024-02-04Common: Introduce Range SetsFernando Sahmkow
2024-02-04VideoCore: Move Slot Vector to CommonFernando Sahmkow
2024-02-02service: fs: Skip non user id foldersNarr the Reg
2024-01-31Merge pull request #12869 from FernandoS27/smmu-fixesliamwhite
SMMU: A set of different fixes.
2024-01-31smmu: use new range mutex construction for protecting countersLiam
2024-01-31settings: Allow audio sink, input, and output to be set per gamet895
2024-01-29Merge pull request #12814 from Kelebek1/time_new_ipcliamwhite
Move time services to new IPC and add debug printing
2024-01-27atomic_ops: Fix MSVCMerry
2024-01-27atomic_ops: Remove volatile qualifierMerry
2024-01-27atomic_ops: Reduce code duplication with templatesMerry
Also fixes builds on unusual toolchains where: - u32 is unsigned int - u64 is unsigned long long - uintptr_t is unsigned long
2024-01-27Move time services to new IPC.Kelebek1
Add some fixes/improvements to usage with the new IPC
2024-01-25Address review comments and fix compilation problemsFearlessTobi
2024-01-25fs: Add path classFearlessTobi
2024-01-25Merge pull request #12499 from Kelebek1/timeliamwhite
Rework time services
2024-01-24Rework time service to fix time passing offline.Kelebek1
2024-01-22Merge pull request #12579 from FernandoS27/smmuliamwhite
Core: Implement Device Mapping & GPU SMMU
2024-01-20fs/file: Explicitly convert std::u8string to std::filesystem::pathMerry
2024-01-18Core: Initial implementation of device memory mappingFernando Sahmkow
2024-01-16Merge remote-tracking branch 'origin/master' into typos3Viktor Szépe
2024-01-15Fix more typosViktor Szépe
2024-01-12kernel: fix page leak on process terminationLiam
2024-01-01Merge pull request #12518 from t895/theme-settingsliamwhite
android: Migrate remaining settings to ini
2024-01-01Merge pull request #12466 from liamwhite/sh2Narr the Reg
core: track separate heap allocation for linux
2023-12-30android: Migrate in-game overlay settings to init895
2023-12-27heap_tracker: use linear-time mapping evictionLiam
2023-12-26Merge pull request #12471 from FearlessTobi/port-7146liamwhite
Port citra-emu/citra#7146: "assert/logging: Stop the logging thread and flush the backends before crashing"