| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-05-27 | Move screen size constants from video_core to core | Yuri Kunde Schlesner | |
| video_core didn't even properly use them, and they were the source of many otherwise-unnecessary dependencies from core to video_core. | |||
| 2017-03-17 | citra-qt: remove dead code | wwylele | |
| 2017-03-17 | citra-qt: release all buttons when render window focus is lost | wwylele | |
| credit to @Hawkheart for the original idea | |||
| 2017-03-01 | Input: remove unused stuff & clean up | wwylele | |
| 1. removed zl, zr and c-stick from HID::PadState. They are handled by IR, not HID 2. removed button handling in EmuWindow 3. removed key_map 4. cleanup #include | |||
| 2017-03-01 | InputCommon: add Keyboard | wwylele | |
| 2017-02-23 | Gui: Change title bar to include build name | James Rowe | |
| Nightly builds now have "Citra Nightly" in the titlebar Bleeding edge builds now have "Citra Bleeding Edge" in the titlebar | |||
| 2017-01-07 | Merge pull request #1951 from wwylele/motion-sensor | bunnei | |
| Emulate motion sensor in frontend | |||
| 2017-01-04 | Fix some warnings (#2399) | Jonathan Hao | |
| 2016-12-26 | Frontend: emulate motion sensor | wwylele | |
| 2016-12-23 | core: Move emu_window and key_map into core | MerryMage | |
| * Removes circular dependences (common should not depend on core) | |||
| 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-19 | line fixup for travis ci | CaptV0rt3x | |
| 2016-12-19 | screen swap - Hotkey mapping | Vamsi Krishna | |
| 2016-11-05 | Support additional screen layouts. | James Rowe | |
| Allows users to choose a single screen layout or a large screen layout. Adds a configuration option to change the prominent screen. | |||
| 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-08-29 | qt: Recreate GL context on startup to support changing V-Sync. | bunnei | |
| 2016-08-29 | config: Add a setting for graphics V-Sync. | bunnei | |
| 2016-05-15 | Refactor input subsystem | wwylele | |
| 2016-04-28 | Make Citra build with MICROPROFILE_ENABLED set to 0 (#1709) | Henrik RydgÄrd | |
| * Make Citra build with MICROPROFILE_ENABLED set to 0 * Buildfix with microprofile kept on * moc did not like a dialog to conditionally exist. * Cleanup * Fix end of line | |||
| 2015-10-04 | citra-qt: Fix mouse events coordinates on high-DPI screens | Pierre de La Morinerie | |
| 2015-09-24 | Fix for the refresh issue when no rendering is done | LittleWhite | |
| 2015-09-18 | citra-qt: Fix connect error on startup | Kloen | |
| 2015-09-14 | Merge pull request #1111 from LittleWhite-tb/qt-close-renderwindow | bunnei | |
| Stop emulation when render window is closed | |||
| 2015-09-11 | citra_qt: Reorganize headers | Lioncash | |
| 2015-09-07 | Stop emulation when render window is closed | LittleWhite | |
| 2015-09-03 | citra-qt: Move system shutdown to run inside EmuThread | Yuri Kunde Schlesner | |
| This stops (for some reason sporadic) crashes and OpenGL errors during shutdown, when the OpenGL renderer tries to clean up objects from the UI thread, which has no OpenGL context active. | |||
| 2015-08-30 | Increase required OpenGL version to 3.3 | Yuri Kunde Schlesner | |
| This gives us several niceties such as Sampler Objects, shader attribute locations and Timer Queries. | |||
| 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-07-29 | citra-qt: Adjust initializer list order | Lioncash | |
| Silences a warning. | |||
| 2015-07-27 | Move input values into an array | James Rowe | |
| 2015-07-13 | Qt: Fix disassembly widget stepping | aroulin | |
| 2015-06-28 | CitraQt: Cleanup includes. | Emmanuel Gil Peyrot | |
| 2015-05-29 | Remove every trailing whitespace from the project (but externals). | Emmanuel Gil Peyrot | |
| 2015-05-23 | Qt: Silence a bogus warning printed when using the debug runtime | Yuri Kunde Schlesner | |
| The Qt debug runtime prints a bogus warning on the console if you haven't called makeCurrent since the last time you called swapBuffers. This presumably means something if you're using QGLWidget the "regular" way, but in our multi-threaded use case is harmless since we never call doneCurrent in the rendering thread. | |||
| 2015-05-22 | MakeCurrent race condition fix | tfarley | |
| 2015-05-18 | Use condition var to properly pause the CPU thread | James Rowe | |
| Adds support for threaded pausing so citra doesn't spin wait on pause | |||
| 2015-05-07 | Common: Remove common.h | Yuri Kunde Schlesner | |
| 2015-05-02 | Merge pull request #698 from Zaneo/clip_stylus_input | Tony Wasserka | |
| EmuWindow: Clip mouse input coordinates to emulated screen dimensions. | |||
| 2015-05-01 | EmuWindow: Clip mouse input coordinates to emulated screen dimensions. | Zaneo | |
| If the mouse position for a mouse move/drag would take it outside the emulated screen dimensions, clip the coordinates to the emulated screen dimensions. Qt and GLFW will report negative coordinates for mouse positions to the left, or above citra window. Added restriction to mouse coordinates passed to touchmoved by Qt/GLFW to be greater or equal to zero. | |||
| 2015-05-01 | Qt: Fixed a bug in shutdown procedure, various cleanups. | bunnei | |
| 2015-05-01 | Qt: Use signals for emu_thread start/stop and fix disasm widget. | bunnei | |
| 2015-05-01 | Qt: Restructured to remove unnecessary shutdown event and various cleanups. | bunnei | |
| 2015-05-01 | Qt: Create emu thread on bootup, kill it on shutdown. | bunnei | |
| 2015-05-01 | EmuThread: Remove unused filename attribute. | bunnei | |
| 2015-05-01 | Qt: Move EmuThread ownership from render window to main window. | bunnei | |
| 2015-03-10 | HID: Complete refactor of pad/touch input to fix threading issues. | bunnei | |
| 2015-03-10 | Qt: Implemented EmuWindow touchpad support. | bunnei | |
