Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-01-12 | Massive removal of unused modules | James Rowe | |
2017-08-25 | telemetry: Log frontend type. | bunnei | |
2017-06-24 | Set global definition WIN32_LEAN_AND_MEAN (#2807) | B3n30 | |
Set definition WIN32_LEAN_AND_MEAN to avoid windows.h including a lot of libs that are usually not used. | |||
2017-06-03 | Edit Citra URLs (#2728) | Alex Touchet | |
2017-05-27 | Remove some unnecessary inclusions of video_core.h | Yuri Kunde Schlesner | |
2017-01-29 | citra: add missing control paths for ResultStatus on rom load. Fix warning ↵ | Kloen | |
about unhandled enumeration values on OSX | |||
2016-12-21 | Address clang-format issues. | bunnei | |
2016-12-21 | core: Consolidate core and system state, remove system module & cleanups. | bunnei | |
2016-12-21 | core: Consolidate top-level system state into a singleton. | bunnei | |
2016-12-05 | Support mingw cross-compile | Jannik Vogel | |
2016-11-27 | Kernel/Loader: Grab the system mode from the NCCH ExHeader. | Subv | |
3dsx and elf files default to system mode 2 (96MB allocated to the application). This allows Home Menu to boot without modifications. Closes #1849 | |||
2016-11-19 | Kernel/Loader: Grab the system mode from the NCCH ExHeader. | Subv | |
3dsx and elf files default to system mode 2 (96MB allocated to the application). This allows Home Menu to boot without modifications. Closes #1849 | |||
2016-09-21 | Remove empty newlines in #include blocks. | Emmanuel Gil Peyrot | |
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation. | |||
2016-09-18 | Manually tweak source formatting and then re-run clang-format | Yuri Kunde Schlesner | |
2016-09-18 | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | |
2016-06-08 | Fix boot_filename encode on Windows | LFsWang | |
2016-05-21 | CitraQt: Simplify the game list loader code | Emmanuel Gil Peyrot | |
2016-05-21 | Loader, Frontends: Refactor loader creation and game loading | Emmanuel Gil Peyrot | |
This allows frontends to keep a single loader and use it multiple times e.g. for code loading and SMDH parsing. | |||
2016-04-20 | SDL2 Frontend: Use argv[0], add a --version, and reorder options. | Emmanuel Gil Peyrot | |
2016-04-11 | Use Settings::Apply in SDL frontend | Jannik Vogel | |
2016-04-06 | Default to settings from ini for gdbstub | polaris- | |
2016-04-06 | Adopted WinterMute's gdbstub changes | polaris- | |
This fixes the comments left on the PR (whitespace, SO_REUSEADDR, comment changes). | |||
2016-04-05 | Common: Remove Common::make_unique, use std::make_unique | MerryMage | |
2016-03-15 | citra: Shutdown cleanly if ROM load fails | MerryMage | |
2016-03-02 | Dependencies: Remove GLFW, Add SDL2 | MerryMage | |
citra: Remove GLFW, Add SDL2 FindSDL2: Do not CACHE SDL2_* variables if library is not found EmuWindow_SDL2: Set minimal client area at initialisation time EmuWindow_SDL2: Corrections EmuWindow_SDL2: Fix no decorations on startup on OS X cmake: windows_copy_files | |||
2015-10-22 | Handle changes pointed out in comments on PR | polaris- | |
2015-10-04 | Toggle use_gdbstub in citra GLFW | polaris- | |
2015-10-04 | Implement gdbstub | polaris- | |
2015-09-19 | Implement gdbstub | polaris- | |
2015-08-24 | Integrate the MicroProfile profiling library | Yuri Kunde Schlesner | |
This brings goodies such as a configurable user interface and multi-threaded timeline view. | |||
2015-08-15 | Shader: Initial implementation of x86_x64 JIT compiler for Pica vertex shaders. | bunnei | |
- Config: Add an option for selecting to use shader JIT or interpreter. - Qt: Add a menu option for enabling/disabling the shader JIT. | |||
2015-07-12 | Implement new argument parsing using getopt and add the corresponding ↵ | Greg Wicks | |
library to externals | |||
2015-06-28 | Citra: Fix the includes a bit, thanks to include-what-you-use. | Emmanuel Gil Peyrot | |
2015-05-22 | OpenGL renderer | tfarley | |
2015-05-12 | Common: Remove async logging | Yuri Kunde Schlesner | |
It provided a large increase in complexity of the logging system while having a negligible performance impact: the usage patterns of the ring buffer meant that each log contended with the logging thread, causing it to effectively act as a synchronous extra buffering. Also removed some broken code related to filtering of subclasses which was broken since it was introduced. (Which means no one ever used that feature anyway, since, 8 months later, no one ever complained.) | |||
2015-05-07 | Common: Remove common.h | Yuri Kunde Schlesner | |
2015-05-06 | Common: Remove many unnecessary cross-platform compatibility macros | Yuri Kunde Schlesner | |
2015-03-06 | Logging: check for filter before sending to the queue, to skip all heavy ↵ | Emmanuel Gil Peyrot | |
formatting on the other thread. | |||
2015-01-04 | Frontends: Shutdown core when emulation is stopped | Yuri Kunde Schlesner | |
2014-12-20 | License change | purpasmart96 | |
2014-12-13 | Add configurable per-class log filtering | Yuri Kunde Schlesner | |
2014-12-13 | Convert old logging calls to new logging macros | Yuri Kunde Schlesner | |
2014-12-13 | New logging system | Yuri Kunde Schlesner | |
2014-11-19 | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵ | Emmanuel Gil Peyrot | |
or generated | |||
2014-11-03 | Add support for disabling log from settings | Sean | |
2014-10-17 | Implemented graceful closing of the GLFW window, along with emulation. | archshift | |
2014-10-07 | Added configuration file system. | archshift | |
Uses QSettings on citra-qt, and inih on citra-cli. | |||
2014-08-30 | Core: Refactor core to use only one function for execution. | bunnei | |
Core: Cleaned up comment to be more readable. Citra: Changed loop to be more readable. | |||
2014-08-19 | Removed unused citra.h | archshift | |
2014-06-24 | Loader: Implemented AppLoader interface for abstracting application loading. | bunnei | |
- Various cleanups/refactorings to Loader, ELF, and NCCH modules. - Added AppLoader interface to ELF and NCCH. - Updated Qt/GLFW frontends to check AppLoader ResultStatus. NCCH: Removed extra qualification typos. Loader: Removed unnecessary #include's. NCCH: Improved readability of memcmp statements. NCCH: Added missing space. Elf: Removed unnecessary usage of unique_ptr. Loader: Removed unnecessary usage of unique_ptr. |