summaryrefslogtreecommitdiff
path: root/src/yuzu
AgeCommit message (Collapse)Author
2020-06-19Merge pull request #4099 from MerryMage/macOS-buildbunnei
Fix compilation on macOS
2020-06-20Add translation of "Current Boxcat Events"David Marcec
2020-06-19Fix compilation when not building with boxcatDavid Marcec
Fixes compilation when trying to build without boxcat enabled
2020-06-18bootmanager: Remove references to OpenGL for macOSMerryMage
OpenGL macOS headers definitions clash heavily with each other
2020-06-16Merge pull request #4041 from ReinUsesLisp/arb-decompbunnei
gl_arb_decompiler: Implement an assembly shader decompiler
2020-06-16Merge pull request #3966 from Morph1984/hide-internal-resolution-uibunnei
yuzu/frontend: Remove internal resolution option
2020-06-10yuzu/configuration: Show assembly shaders check boxReinUsesLisp
2020-06-06yuzu/frontend: Remove internal resolution optionMorph
2020-06-04Merge pull request #4009 from ogniK5377/macro-jit-prodbunnei
video_core: Implement Macro JIT
2020-06-03Actually save the input when clearing/resetting to defaultFearlessTobi
Co-Authored-By: xperia64 <xperiancedapps@gmail.com>
2020-05-31Merge pull request #3958 from FernandoS27/gl-debugbunnei
OpenGL: Enable Debug Context and Synchronous debugging when graphics debugging is enabled
2020-05-30Implement macro JITDavid Marcec
2020-05-27Merge pull request #3954 from Morph1984/log-memory-amountbunnei
main: Log host system memory parameters
2020-05-27Fix macOS code and change "Swapfile" to "Swap"Morph
2020-05-24Merge pull request #3964 from ReinUsesLisp/arb-integrationbunnei
renderer_opengl: Add assembly program code paths
2020-05-22yuzu/discord_impl: Update the applicationID (#3977)Tobias
2020-05-19yuzu: Add frontend settings for assembly shadersReinUsesLisp
Add settings for assembly shaders. Currently hidden to avoid users from accidentally enabled them.
2020-05-17OpenGL: Enable Debug Context and Synchronous debugging when graphics ↵Fernando Sahmkow
debugging is enabled. This commit aims to help easing debugging of driver crashes without having to modify existing code.
2020-05-17main: Log host system memory parametersMorph
Logs both physical memory and swapfile sizes, this is useful for support.
2020-05-16Merge pull request #3665 from bunnei/device-savebunnei
FS: Improve emulation of device saves
2020-05-15frontend: Set minimum window size to 640x360 instead of 1280x720 (#3413)Morph
2020-05-14Merge pull request #3927 from jroweboy/fix-bugbunnei
Frontend: Remove tracking for context wrapper
2020-05-11Frontend: Remove tracking for context wrapperJames Rowe
2020-05-11core: settings: Add a setting for time zone.bunnei
2020-05-11yuzu: game_list: Fix 'Open Save Data Location' for device saves.bunnei
2020-05-06Menubar: fix mouse tracking bugFearlessTobi
Co-Authored-By: Vitor K <vitor-k@users.noreply.github.com>
2020-05-03Merge pull request #3637 from FearlessTobi/port-5094bunnei
Port citra-emu/citra#5094: "yuzu: Option to hide mouse on inactivity"
2020-04-28Merge pull request #3771 from benru/dump-romfs-with-updatesbunnei
Dump RomFS command to include Updates
2020-04-27Merge pull request #3742 from FernandoS27/command-listbunnei
Optimize GPU Command Lists and Introduce Fast GPU Time Option
2020-04-26Merge pull request #3795 from vitor-k/fix-folderbunnei
Fix "Port citra-emu/citra#4956: "Fixes to game list sorting" #3611"
2020-04-26Merge pull request #3791 from Kewlan/hotkey-config-plusbunnei
configuration: Add Restore Default and Clear options to hotkeys
2020-04-25Merge pull request #3761 from Kewlan/stick-modifier-sliderbunnei
configure_input_player: Use slider to edit modifier scale
2020-04-25Fix the mistake in the port and update the comment for clarityVitor Kiguchi
2020-04-24Add Restore Defaults and Clear options to hotkeysKewlan
2020-04-24Merge pull request #3760 from Morph1984/trailing-filedir-separatorbunnei
frontend/filesystem: Add a trailing separator to the string path
2020-04-23Clang Format.Fernando Sahmkow
2020-04-23GPU: Add Fast GPU Time Option.Fernando Sahmkow
2020-04-23Update src/yuzu/main.cpp with missing constBen Russell
Co-Authored-By: Mat M. <mathew1800@gmail.com>
2020-04-23Dump RomFS command to include UpdatesBen Russell
Patch the RomFS with the selected updates before dumping. Previously the resulting RomFS only contained data from the original title. To dump the RomFS without updates the user can disable the update under Properties before choosing Dump RomFS.
2020-04-23Merge pull request #3697 from lioncash/declarationsbunnei
CMakeLists: Enable -Wmissing-declarations on Linux builds
2020-04-23Edit modifier_scale with the deadzone sliderKewlan
2020-04-22Clang format.Fernando Sahmkow
2020-04-22UI: Replasce accurate GPU option for GPU Accuracy LevelFernando Sahmkow
2020-04-22Add a trailing separator to the string pathMorph
Fixes #3643
2020-04-20dynarmic: Add option to disable CPU JIT optimizationsMerryMage
2020-04-20yuzu: Option to hide mouse on inactivityFearlessTobi
Co-Authored-By: Vitor K <vitor-k@users.noreply.github.com>
2020-04-19Merge pull request #3655 from FearlessTobi/ui-retext-yuzubunnei
yuzu/main: Add better popup texts and remove duplicated actions
2020-04-16General: Resolve warnings related to missing declarationsLioncash
2020-04-15CMakeLists: Specify -Wextra on linux buildsLioncash
Allows reporting more cases where logic errors may exist, such as implicit fallthrough cases, etc. We currently ignore unused parameters, since we currently have many cases where this is intentional (virtual interfaces). While we're at it, we can also tidy up any existing code that causes warnings. This also uncovered a few bugs as well.
2020-04-14yuzu/main: Add better popup texts and remove duplicated actionsFearlessTobi
Makes popup texts more compact and clear and also links our quickstart guide now. Also removes OnMenuSelectEmulatedDirectory from the File dropdown, as the action already exists in the Filesystem tab and provides better visual feedback there.