Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-07-11 | yuzu: Remove setting for using Unicorn | Lioncash | |
The JIT is mature enough that this setting can be removed, falling back to Unicorn only on unsupported architectures. Any missing features from Unicorn (of which there are extremely few), are mostly developer-oriented, which most users don't care about. Features should be coordinated with the JIT, not the interpreter, anyhow. | |||
2019-07-05 | Merge pull request #2601 from FernandoS27/texture_cache | Zach Hilman | |
Implement a new Texture Cache | |||
2019-07-04 | Merge pull request #2669 from FearlessTobi/move-cpujit-setting | Zach Hilman | |
yuzu: Move CPU Jit setting to Debug tab | |||
2019-07-04 | yuzu: Remove CPU Jit setting from the UI | fearlessTobi | |
A normal user shouldn't change this, as it will slow down the emulation and can lead to bugs or crashes. The renaming is done in order to prevent users from leaving this on without a way to turn it off from the UI. | |||
2019-06-28 | settings: Add config option for kiosk (quest) mode | Zach Hilman | |
2019-06-21 | Merge pull request #2482 from DarkLordZach/prepo | bunnei | |
core: Add detailed local reporting feature for development | |||
2019-06-20 | video_core: Make ARB_buffer_storage a required extension | ReinUsesLisp | |
2019-06-07 | Merge pull request #2514 from ReinUsesLisp/opengl-compat | Zach Hilman | |
video_core: Drop OpenGL core in favor of OpenGL compatibility | |||
2019-06-05 | Merge pull request #2526 from lioncash/global | Zach Hilman | |
core/telemetry_session: Remove usages of the global system accessor | |||
2019-05-30 | rasterizer_opengl: Remove OpenGL core profile | ReinUsesLisp | |
2019-05-29 | Merge pull request #2518 from ReinUsesLisp/sdl2-window | bunnei | |
yuzu_cmd: Split emu_window OpenGL implementation into its own file | |||
2019-05-28 | yuzu_cmd/yuzu: Correct formatting specifier | Lioncash | |
Amends the formatting specifier to obey libfmt. Prevents the application from terminating due to a formatting issue in the error case. | |||
2019-05-28 | core/loader: Remove LoadKernelSystemMode | Lioncash | |
This is a hold-over from Citra and doesn't apply to yuzu. | |||
2019-05-26 | emu_window: Pass OnMinimalClientAreaChangeRequest argument by copy | ReinUsesLisp | |
There's no performance improvement in passing an unsigned pair by reference. | |||
2019-05-25 | yuzu_cmd: Split emu_window OpenGL implementation into its own file | ReinUsesLisp | |
2019-05-25 | settings: Add 'Reporting Services' config option | Zach Hilman | |
Full enable/disable for all reports. | |||
2019-05-23 | common/file_util: Make ReadFileToString and WriteStringToFile consistent | Lioncash | |
Makes the parameter ordering consistent, and also makes the filename parameter a std::string. A std::string would be constructed anyways with the previous code, as IOFile's only constructor with a filepath is one taking a std::string. We can also make WriteStringToFile's string parameter utilize a std::string_view for the string, making use of our previous changes to IOFile. | |||
2019-05-17 | Merge pull request #2477 from ReinUsesLisp/fix-sdl2 | bunnei | |
yuzu_cmd: Make OpenGL's context current | |||
2019-05-17 | yuzu_cmd: Use OpenGL compat when asked in the settings | ReinUsesLisp | |
2019-05-17 | yuzu_cmd: Make OpenGL's context current | ReinUsesLisp | |
The SDL2 frontend never bound the OpenGL context, resulting on a white screen and no-ops all over the backend. | |||
2019-04-24 | Merge pull request #2424 from FernandoS27/compat | bunnei | |
Allow picking a Compatibility Profile for OpenGL. | |||
2019-04-20 | Allow picking a Compatibility Profile for OpenGL. | Fernando Sahmkow | |
This option allows picking the compatibility profile since a lot of bugs are fixed in it. We devs will use this option to easierly debug current problems in our Core implementation.:wq | |||
2019-04-16 | CMakeLists: Ensure we specify Unicode as the codepage on Windows | Lioncash | |
Previously we were building with MBCS, which is pretty undesirable. We want the application to be Unicode-aware in general. Currently, we make the command line variant of yuzu use ANSI variants of the non-standard getopt functions that we link in for Windows, given we only have an ANSI option-set. We should really replace getopt with a library that we make all build types of yuzu link in, but this will have to do for the time being. | |||
2019-04-13 | Merge pull request #2017 from jroweboy/glwidget | bunnei | |
Frontend: Migrate to QOpenGLWindow and support shared contexts | |||
2019-04-09 | Merge pull request #1957 from DarkLordZach/title-provider | bunnei | |
file_sys: Provide generic interface for accessing game data | |||
2019-03-29 | core/yuzu: Remove enable_nfc setting | fearlessTobi | |
This was initially added to prevent problems from stubbed/not implemented NFC services, but as we never encountered such and as it's only used in a deprecated function anyway, I guess we can just remove it to prevent more clutter of the settings. | |||
2019-03-26 | game_list: Register content with ContentProvider | Zach Hilman | |
2019-03-19 | Fix getopt on systems where char is unsigned by default | xperia64 | |
2019-03-13 | Merge pull request #2187 from FearlessTobi/port-sdl-things | bunnei | |
Port various Citra changes to input_common, including deadzone support | |||
2019-03-09 | yuzu_cmd/config: Replace C casts with static_cast | ReinUsesLisp | |
2019-03-09 | yuzu_cmd/config: Silent implicit cast warning | ReinUsesLisp | |
2019-03-07 | Merge pull request #2055 from bunnei/gpu-thread | bunnei | |
Asynchronous GPU command processing | |||
2019-03-06 | settings: Add new graphics setting for use_asynchronous_gpu_emulation. | bunnei | |
2019-03-04 | yuzu-cmd/yuzu: Replace direct usage of the global system telemetry accessor ↵ | Lioncash | |
in main() We already have the system instance around, so we can use that instead of the accessor. | |||
2019-03-02 | Input: Remove global variables from SDL Input | James Rowe | |
Changes the interface as well to remove any unique methods that frontends needed to call such as StartJoystickEventHandler by conditionally starting the polling thread only if the frontend hasn't started it already. Additionally, moves all global state into a single SDLState class in order to guarantee that the destructors are called in the proper order | |||
2019-02-06 | gl_shader_cache: Link loading screen with disk shader cache load | ReinUsesLisp | |
2019-02-06 | settings: Hide shader cache behind a setting | ReinUsesLisp | |
2019-01-22 | citra_qt: Log settings on launch | zhupengfei | |
2019-01-21 | SDL Frontend: Add shared context support | James Rowe | |
2019-01-07 | settings: Use std::chrono::seconds instead of s64 for RTC | Zach Hilman | |
2019-01-07 | time: Use custom RTC settings if applicable for game | Zach Hilman | |
2019-01-07 | settings: Add custom RTC settings | Zach Hilman | |
Stored as signed seconds since epoch. | |||
2018-12-04 | qt: Add Properties menu to game list right-click | Zach Hilman | |
2018-12-03 | config: Store and load disabled add-ons list | Zach Hilman | |
2018-11-28 | gl_rasterizer: Remove extension booleans | ReinUsesLisp | |
2018-11-23 | Merge pull request #1725 from FernandoS27/gl43 | bunnei | |
Update OpenGL's backend version from 3.3 to 4.3 | |||
2018-11-23 | Merge pull request #1747 from DarkLordZach/exefs-lfs | bunnei | |
patch_manager: Add support for applying LayeredFS patches to ExeFS | |||
2018-11-21 | Removed pre 4.3 ARB extensions | FernandoS27 | |
2018-11-21 | Update OpenGL's backend version from 3.3 to 4.3 | FernandoS27 | |
2018-11-20 | settings: Add option to dump ExeFS of games upon launch | Zach Hilman | |
When enabled, all exefs(es) will be copied to yuzu/dump/<title_id>/exefs. |