aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2022-10-04Merge pull request #9010 from liamwhite/buttwisebunnei
macro_jit_x64: fix miscompilation of bit extraction operations
2022-10-03vk_scheduler: wait for command processing to completeLiam
2022-10-03service: nfp: Fix errors to pass unit testingNarr the Reg
2022-10-03common: remove "yuzu:" prefix from thread namesLiam
2022-10-02shader_recompiler: add extended LDC to GLASM backendLiam
2022-10-02Merge pull request #8955 from german77/amiibo-rewritebunnei
core: nfp: Rewrite implementation to remove direct access from the frontend
2022-10-02service: mii: Copy only valid name bytesgerman77
2022-10-02service: nfp: Implement mount target and open application area errors, minor ↵Narr the Reg
fixes
2022-10-02nfp: Multiple fixes against HWgerman77
2022-10-02service: nfp: address commentsgerman77
2022-10-02service: nfp: Rewrite and implement applet callsgerman77
2022-10-02core: hid: Add nfc support to emulated controllergerman77
2022-10-02yuzu: Use virtual amiibo driver instead of nfp servicegerman77
2022-10-02input_common: Enable virtual amiibo drivergerman77
2022-10-02input_common: Create virtual amiibo drivergerman77
2022-10-02Merge pull request #8992 from Morph1984/vi-vsync-eventbunnei
service: vi: Retrieve vsync event once per display
2022-10-01Merge pull request #6598 from FernandoS27/falklands-are-britishliamwhite
MacroHLE: Add MultidrawIndirect HLE Macro.
2022-10-01MacroHLE: Add MultidrawIndirect HLE Macro.Fernando Sahmkow
2022-10-01macro_jit_x64: fix miscompilation of bit extraction operationsLiam
2022-10-01Qt: work around Qt5's font choice for ChineseKyle Kienapfel
On Windows there are currently two fonts used. The first, does the Menu, QTreeView and Tooltips Second is Everything else which is a default font. From inspecting QApplication::font() at runtime Windows 10 English: QFont(MS Shell Dlg 2,8.25,-1,5,50,0,0,0,0,0) Windows 11 Japanese: MS UI Gothic,9 ,-1,5,50,0,0,0,0,0 Windows 11 Traditional Chinese: PMingLiU,9 ,-1,5,50,0,0,0,0,0 Windows 11 Simplified Chinese: SimSun,9 ,-1,5,50,0,0,0,0,0 Windows 11 Korean: Gulim,9 ,-1,5,50,0,0,0,0,0 I initially investigated dynamically changing the font when the UI language is English, but this was getting quite messy Qt6 makes changes to default font in some situations, so this PR is being narrowed in scope to only effect Chinese font choices. This change only effects rendering of Latin/Cyrillic characters.
2022-10-01Merge pull request #8876 from FearlessTobi/multiplayer-part3bunnei
ldn: Implement "local wireless" networked multiplayer
2022-10-01Merge pull request #9008 from ZwipZwapZapony/controller.colors_state.rightNarr the Reg
Fix "controller.colors_state.right" being "left"
2022-10-01Merge pull request #8874 from vonchenplus/align_index_buffer_sizebunnei
Align index buffe size when vertex_buffer_unified_memory enable
2022-10-01Fix "controller.colors_state.right" being "left"Zwip-Zwap Zapony
2022-10-01macro_jit_x64: cancel exit for taken branchLiam
2022-09-30Merge pull request #8910 from vonchenplus/astc_decode_errorbunnei
video_core: Modify astc texture decode error fill value
2022-09-29Merge pull request #8934 from german77/palma_releasebunnei
service: hid: Partially implement palma controller
2022-09-28Merge pull request #8940 from german77/silencebunnei
yuzu: Silence some clang warnings
2022-09-25service: vi: Retrieve vsync event once per displayMorph
The display vsync event can only be retrieved once per display. Returns VI::ResultPermissionDenied if we attempt to retrieve the vsync event for the same display. Prevents games such as .hack//G.U. Last Recode from consuming all the handles in the handle table by spamming vsync event retrievals and allows it to go in game.
2022-09-25service: vi: Move VI results into its own fileMorph
2022-09-25core/loader: Return nullptr if file is nullptrMerry
2022-09-25vulkan: automatically use larger staging buffer sizes when possibleLiam
2022-09-24Merge pull request #8920 from abouvier/cmake-gitbunnei
cmake: fix git detection
2022-09-25service: hid: Partially implement palma controllerNarr the Reg
2022-09-23Merge pull request #8941 from Kelebek1/single_core_sucksbunnei
Do not try to pause core timing from the audio thread when using single-core
2022-09-23Merge pull request #8945 from Tachi107/typosMorph
chore: fix some typos
2022-09-23Merge pull request #8948 from german77/orderMorph
yuzu: sort input profiles by name
2022-09-23Merge pull request #8930 from lat9nq/disable-vulkan-checkMorph
yuzu qt: Add option to disable startup Vulkan check
2022-09-23yuzu: sort input profiles by nameNarr the Reg
2022-09-23Merge pull request #8943 from lioncash/netifaceMorph
sockets: Make fd member variable protected
2022-09-23Merge pull request #8939 from lioncash/renderMorph
audio_renderer: Make GetCommandBuffer() take a u32
2022-09-23chore: fix some typosAndrea Pappacoda
Fix some typos reported by Lintian
2022-09-22build(room): simplify yuzu-room installationAndrea Pappacoda
CMake is able to automatically install binaries in the correct location. Also see my older patch, https://github.com/yuzu-emu/yuzu/commit/af94bf4a594b6a3599fae1d78e5d283b9f602032 Cc: @FearlessTobi
2022-09-22sockets: Make fd member variable protectedLioncash
Other things shouldn't be able to directly mess around with the descriptor
2022-09-22Do not try to pause core timing from the audio thread when using single-coreKelebek1
2022-09-21yuzu: Silence some clang warningsNarr the Reg
2022-09-21audio_renderer: Make GetCommandBuffer() take a u32Lioncash
This function is only ever called with unsigned types, and all of the other interface functions take session_id as a u32, so this makes the class a little more consistent.
2022-09-21audio_manager: Forward declare result typeLioncash
Moves the include into the cpp file to lessen header dependencies.
2022-09-21audio_manager: Remove redundant cast in ThreadFunc()Lioncash
We can just use a local here to get rid of a second cast.
2022-09-21audio_manager: move std::functions in SetOutManager/SetInManagerLioncash
Prevents unnecessary reallocations in the event the captured variables are larger than the internal std::function buffer.