Commit Graph

20741 Commits (e0895a85810d76d810b40ade50dc514a459b685e)

Author SHA1 Message Date
Liam c352381ce9 kernel: additional style fixes to KThread, KProcess 2 years ago
Liam 9775a73d1a kernel: fix clang build 2 years ago
Liam 088c434d65 kernel: remove unnecessary finalize calls 2 years ago
Liam 9863db9db4 kernel: convert KProcess to new style 2 years ago
Liam 6bfb4c8f71 kernel: convert KThread to new style 2 years ago
Liam ac6cbb7134 kernel: prefer std::addressof 2 years ago
Liam 641783df8f kernel: convert KResourceLimit 2 years ago
Liam c0b9e93b77 kernel: remove kernel_ 2 years ago
Liam 9368e17a92 kernel: remove gratitutous attribute usage 2 years ago
Liam 91fd4e30f2 kernel/svc: convert to new style 2 years ago
Liam 57f1d8ef8d kernel: convert miscellaneous 2 years ago
Liam d1b53c8d82 kernel: conver KScopedLock, KScopedResourceReservation, KSessionRequest, KSharedMemory, KSpinLock 2 years ago
Liam 7322c99e5f kernel: convert KAbstractSchedulerLock 2 years ago
Liam 467adc1acd kernel: convert KMemoryLayout, KMemoryRegion*, KPageTableSlabHeap, KPriorityQueue 2 years ago
Liam 0483dfae1a kernel: move KMemoryLayout for NX board 2 years ago
Liam 8d1f5bfbd2 kernel: remove KLinkedList 2 years ago
Liam fdf90c6d75 kernel: convert KConditionVariable, KLightConditionVariable, KLightLock 2 years ago
Liam 097c25b164 kernel: convert KPort, KSession 2 years ago
Liam d24ab14126 kernel: convert GlobalSchedulerContext, KAddressArbiter, KScopedSchedulerLockAndSleep, KThreadQueue to new style 2 years ago
Liam 3f261f22c9 vk_scheduler: split work queue waits and execution waits 2 years ago
Liam 600f325d87 general: fix spelling mistakes 2 years ago
FengChen 44f10c8dee video_core: Fix ogl status error when draw_texture 2 years ago
FengChen 4e42ba54e5 video_core: Invalid index_buffer flag when inline_index draw 2 years ago
german77 e090a1c6bd yuzu: Move audio settings to audio section 2 years ago
german77 e8af3f29d2 yuzu: Remove console id setting 2 years ago
Fernando S 49643d8134
Merge pull request #9913 from ameerj/acc-dma-refactor
AccelerateDMA: Refactor Buffer/Image copy code and implement for OGL
2 years ago
liamwhite 92c89312fc
Merge pull request #9923 from liamwhite/kht
kernel: add timer pointer to KThreadQueue
2 years ago
liamwhite e0bd27b674
Merge pull request #9928 from german77/super_nfp
service: nfp: Improve implementation
2 years ago
liamwhite 103380134f
Merge pull request #9925 from ameerj/gl-sync-signal
OpenGL: Prefer glClientWaitSync for OGLSync objects
2 years ago
liamwhite 021af4fd00
Merge pull request #9917 from Morph1984/the-real-time
native_clock: Re-adjust the RDTSC frequency to its real frequency
2 years ago
Feng Chen c8ad039612 video_core: Update texture format 2 years ago
Narr the Reg 8d5cde6eff service: nfp: Improve implementation 2 years ago
liamwhite ec4e2d1fab
Merge pull request #9916 from liamwhite/fpu
kernel: clone fpu status on CreateThread
2 years ago
liamwhite b5c0c1e163
Merge pull request #9822 from ameerj/buffcache-ssbo-addr
buffer_cache: Add logic for non-NVN storage buffer tracking
2 years ago
ameerj 03137086db OpenGL: Prefer glClientWaitSync for OGLSync objects
At least on Nvidia, glClientWaitSync with a timeout of 0 (non-blocking) is faster than glGetSynciv of GL_SYNC_STATUS.
2 years ago
bunnei 4562f7af9a
Merge pull request #9906 from german77/metroid2
input_common: Increase mouse sensitivity range
2 years ago
liamwhite f3f57f90fe
Merge pull request #9912 from liamwhite/err
hle: rename legacy errors to Results
2 years ago
liamwhite b5d61f214d
Merge pull request #9904 from liamwhite/ws
kernel: fix WaitSynchronization
2 years ago
liamwhite 3cf88a4d6c
Merge pull request #9896 from Kelebek1/d24s8
Check all swizzle components for red, not just [0]
2 years ago
Morph 67560296c6 perf_stats: Check multicore first
SpeedLimiting is SC only. Since MC is performance oriented we should check for it first to skip checking use_speed_limit.
2 years ago
Morph d72d753b1a
Merge pull request #9921 from liamwhite/override
general: fix type inconsistencies
2 years ago
Morph a3ffea6a64
Merge pull request #9918 from liamwhite/fwrapv
kernel: avoid signed overflow UB on MSVC
2 years ago
Morph b014fdacdb
Merge pull request #9920 from liamwhite/constexpr-bit-cast
common: make BitCast constexpr
2 years ago
Morph 1073346c7f hid: Use nanosecond timestamps instead of ticks 2 years ago
Morph 3053a62375 core: Promote CPU/GPU threads to time critical
And also demote Audren and CoreTiming to High thread priority.
2 years ago
Morph d718eab351 native_clock: Wait for 10 seconds instead of 30
It was experimentally determined to be sufficient.
2 years ago
Morph c27a626b5b native_clock: Use RealTimeClock instead of SteadyClock
We want to synchronize RDTSC to real time.
2 years ago
Morph 6f9918552c steady_clock: Introduce a real time clock 2 years ago
Morph dcd13a7566 native_clock: Re-adjust the RDTSC frequency
The RDTSC frequency reported by CPUID is not accurate to its true frequency.
We will spawn a separate thread to calculate the true RDTSC frequency after a measurement period of 30 seconds has elapsed.
2 years ago
Narr the Reg 757aafa582
input_common: Minor typo issues (#9922) 2 years ago
Liam 1776448df2 kernel: add timer pointer to KThreadQueue 2 years ago
german77 9a9e5844d3 input_common: Increase mouse sensitivity range 2 years ago
Liam 64dcb40db1 common: make BitCast constexpr 2 years ago
Liam ba4213d956 general: fix type inconsistencies 2 years ago
Liam d45ac00d48 kernel: avoid signed overflow UB on MSVC 2 years ago
Liam 484641003c kernel: clone fpu status on CreateThread 2 years ago
liamwhite a7792e5ff8
Merge pull request #9889 from Morph1984/time-is-ticking
core_timing: Reduce CPU usage on Windows
2 years ago
ameerj 268942c8fe gl_rasterizer: Implement AccelerateDMA DmaBufferImageCopy 2 years ago
ameerj 6b9cc0ed23 Refactor AccelerateDMA code 2 years ago
Liam 1d0fe75e7c hle: rename legacy errors to Results 2 years ago
liamwhite 6d61430311
Merge pull request #9890 from Kelebek1/reverb_fix
Fix a bug with the Reverb command in reading from the pre delay line
2 years ago
liamwhite b210174087
Merge pull request #9910 from jbeich/libc++
kernel: add missing header for libc++
2 years ago
liamwhite e6349fcd3b
Merge pull request #9905 from german77/usbssl
Service: USB, SSL, PSC: Update
2 years ago
liamwhite f7e6bda5cd
Merge pull request #9907 from german77/joycon
input_common: joycon: Add stick input from passive reports
2 years ago
liamwhite 31f0fa1065
Merge pull request #9908 from german77/pfp
service: acc: Replace default image with a 32x32 image
2 years ago
Jan Beich 859fb469b8 kernel: add missing header for libc++
In file included from src/core/hle/kernel/k_light_lock.cpp:4:
In file included from src/./core/hle/kernel/k_light_lock.h:8:
src/./core/hle/kernel/k_scoped_lock.h:25:51: error: no member named 'addressof' in namespace 'std'
    explicit KScopedLock(T& l) : KScopedLock(std::addressof(l)) {}
                                             ~~~~~^
2 years ago
Ikko Eltociear Ashimine c161e3f433
fix typo in settings.h
Intial -> Initial
2 years ago
Narr the Reg 8a501ff30b service: acc: Replace default image with a 32x32 image 2 years ago
german77 97704b8da9 input_common: joycon: Add stick input from passive reports 2 years ago
Narr the Reg 1f57ae6949 service: psc: Update names 2 years ago
Narr the Reg f01540da6c service: ssl: Add missing properties and update names 2 years ago
Narr the Reg 54711df739 service: usb: Update names 2 years ago
Liam 644ee0043e kernel: fix WaitSynchronization 2 years ago
Fernando Sahmkow 8a3411b417 Engines: Implement Accelerate DMA Texture. 2 years ago
Morph 376a414f5b native_clock: Round RDTSC frequency to the nearest 1000 2 years ago
Morph 026eaddbee timer_resolution: Set current process to High QoS
Ensures that this process is treated as a high performance process by the Windows scheduler.
2 years ago
Morph 194cf0b497 hardware_properties: Update BASE_CLOCK_RATE to exactly 1020 MHz 2 years ago
Morph bff1453282 core_timing: Use higher precision sleeps on Windows
The precision of sleep_for and wait_for is limited to 1-1.5ms on Windows.
Using SleepForOneTick() allows us to sleep for exactly one interval of the current timer resolution.
This allows us to take advantage of systems that have a timer resolution of 0.5ms to reduce CPU overhead in the event loop.
2 years ago
Morph 7e353082ac main: (Windows) Set the current timer resolution to the maximum
Increases the precision of thread sleeps on Windows.
2 years ago
Morph 7fffdf83b7 wall_clock: Make use of SteadyClock 2 years ago
Morph 1ed49f92dd common: Implement a method to change the Windows timer resolution
This utilizes undocumented NtDll functions to change the current timer resolution from the default of 1ms.
2 years ago
Morph bd09c82521 common: Implement a high resolution steady clock
This implementation provides a consistent, high performance, and high resolution clock where/when std::chrono::steady_clock does not provide sufficient precision.
2 years ago
Morph ce8f4da638
Merge pull request #9884 from liamwhite/service-cleanup
service: miscellaneous cleanups
2 years ago
Kelebek1 a7fb80e612 Check all swizzle components for red, not just [0], pass float border color rather than int 2 years ago
Behunin 44518b225c gpu_thread: Use bounded queue 2 years ago
bunnei 1f98634371
Merge pull request #9855 from liamwhite/kern-16-support
kernel: support for 16.0.0
2 years ago
Kelebek1 104cb6aa0a Fix a bug with the Reverb command in reading from the pre_delay line. 2 years ago
Liam ec6ee04c64 vulkan_common: disable vertexInputDynamicState on unsupported driver 2 years ago
Liam 97f7f7bad5 kernel: be more careful about kernel address keys 2 years ago
Liam c4ba088a5d kernel: refactor priority inheritance to represent locks as C++ objects 2 years ago
Liam 96bd7ea42d kernel: simplify AddressSpaceInfo, update values 2 years ago
Liam 367e89f984 kernel: barrier memory before condition variable write 2 years ago
Liam 9f9b64cda2 kernel: document previous location of interrupt disables in arbiter/condvar 2 years ago
Liam 4165ac0680 kernel: adjust pool allocations 2 years ago
Liam 62711fec02 kernel: simplify KAbstractSchedulerLock::Lock 2 years ago
Liam 0746a2084e kernel: add InfoType::IoRegionHint 2 years ago
Liam 809148e1a5 nvnflinger: fix name 2 years ago
Liam 65be230fdd service: move hle_ipc from kernel 2 years ago
Liam 4a1aa98598 sm:: remove unused member 2 years ago
liamwhite 97f7a560f3
Merge pull request #9832 from liamwhite/hle-mp
service: HLE multiprocess
2 years ago
Alexandre Bouvier 57fd8b1f45 cmake: use correct boost imported targets 2 years ago
liamwhite 22432668be
Merge pull request #9859 from liamwhite/tmem-use
service: avoid direct pointer access of transfer memory objects
2 years ago
liamwhite 50575c317e
Merge pull request #9874 from german77/violet
service: btm: Fix handle functions
2 years ago
Matías Locatti 5f2cbf53d7
Merge pull request #9872 from goldenx86/partialLTO
Partial LTO
2 years ago
Matías Locatti c38bb96a2c Partially apply LTO to only core and video_core projects. 2 years ago
Narr the Reg 71ca956d5c service: btm: Fix handle functions 2 years ago
Narr the Reg ff11fdb07e
Revert "yuzu: config: Remove player 8 and 9 from config file" 2 years ago
liamwhite 26c1edf2f0
Merge pull request #9849 from ameerj/async-astc
texture_cache: Add asynchronous ASTC texture decoding
2 years ago
Narr the Reg 60688bf0d5 yuzu: config: Remove player 8 and 9 from config file 2 years ago
ameerj 2ce5bb9bd6 buffer_cache: Add logic for non-NVN storage buffer tracking 2 years ago
liamwhite 833afb7ce3
Merge pull request #9848 from german77/metroid_motion
input_common: Implement dedicated motion from mouse
2 years ago
liamwhite 290ec3eb2f
Merge pull request #9857 from german77/fwupdate
core: Update service function tables to 16.0.0+
2 years ago
liamwhite d5bfc36e90
Merge pull request #9861 from german77/bustype
core: hidbus: Fix BusType size
2 years ago
german77 cfd69e2e58 config: Fix per game Force max clock 2 years ago
Narr the Reg 5e4ea04a64 core: hidbus: Fix BusType size 2 years ago
Narr the Reg 39ca7b2928 core: Update service function tables to 16.0.0+ 2 years ago
Liam 975186ad4d am: avoid direct pointer access of transfer memory objects 2 years ago
Liam de4e5db330 hid: avoid direct pointer access of transfer memory objects 2 years ago
ameerj b5bcd8c71b configuration: Add async ASTC decode setting 2 years ago
ameerj 090bc588e5 texture_cache: Add async texture decoding 2 years ago
Narr the Reg 739a81055f core: hid: Restore motion state on refresh and clamp motion values 2 years ago
Narr the Reg 673accd630 input_common: Implement dedicated motion from mouse 2 years ago
Narr the Reg db2785082b settings: Add more input settings to the log 2 years ago
Narr the Reg 9477181d09 core: hid: Fix native mouse mappings 2 years ago
liamwhite 8f3e2a1b48
Merge pull request #9847 from german77/timeout
yuzu: Set a lower timeout for discord presence
2 years ago
Narr the Reg d482ec32a4 yuzu: Set a lower timeout for discord presence 2 years ago
liamwhite 11f6bb1532
Merge pull request #9846 from merryhime/type-const
svc: Fix type consistency (exposed on macOS)
2 years ago
liamwhite ba05301e1b
Merge pull request #9841 from abouvier/httplib-update
externals: Update cpp-httplib to latest
2 years ago
Merry c9678bda24 svc: Fix type consistency (exposed on macOS) 2 years ago
Alexandre Bouvier 83afc12475 externals: Update cpp-httplib to latest 2 years ago
MonsterDruide1 d746cfc018 net: translate ECONNRESET network error 2 years ago
Liam 72e5552409 sm:: fix lingering session initialization issues 2 years ago
Liam 87749d217e cheat_engine: add check for hid initialization 2 years ago
Liam 6e0a33089b sm:: support service registration deferral 2 years ago
Liam a936972614 service: refactor server architecture
Converts services to have their own processes
2 years ago
Liam 23151ff498 core: defer cpu shutdown 2 years ago
german77 165ebbb63c Qt: Reintroduce scaling for touch input 2 years ago
liamwhite 898c5d35a5
Merge pull request #9771 from ameerj/host-thread-id
kernel: Refactor thread_local variable usage
2 years ago
liamwhite a4d0663158
Merge pull request #9588 from liamwhite/bylaws-reverts
Revert "shader_recompiler: Align SSBO offsets to meet host requirements"
2 years ago
liamwhite e531d1fae9
Merge pull request #9815 from german77/qt-mouse
Qt: Fix mouse scalling
2 years ago
Morph 41183b622f
Merge pull request #9825 from liamwhite/object-name
kernel: add KObjectName
2 years ago
bunnei e91ff9b7bd
Merge pull request #9810 from Kelebek1/nvdec_threads
Allow >1 cpu threads on video decoding, disable multi-frame decoding
2 years ago
Liam 1773a1039f kernel: add KObjectName 2 years ago
Mai 61b1772e51
Merge pull request #9817 from german77/save
yuzu: Write to config file on important config changes
2 years ago
Narr the Reg 0a88c7dbbe yuzu: Shutdown game on restart to reload per game config 2 years ago
Narr the Reg df9c8bdfd9 yuzu: Write to config file on important config changes 2 years ago
bunnei 889bfce447
Merge pull request #9802 from Kelebek1/wait_data_cache
Re-add the invalidate_texture_data_cache register
2 years ago
bunnei 744434de38
Merge pull request #9769 from Kelebek1/audio_oob
[audio_core] Fix depop prepare
2 years ago
Narr the Reg 17207939e5 input_common: Split mouse input into individual devices 2 years ago
german77 57aaf00a0c Qt: Fix mouse scalling 2 years ago