aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/citra_qt
Commit message (Collapse)AuthorAge
* Pica/DebugUtils: Add an event triggered after loading a vertex.Gravatar Tony Wasserka2014-12-20
|
* Add support for a ridiculous number of texture formats.Gravatar Tony Wasserka2014-12-20
|
* Pica: Unify ugly address translation hacks.Gravatar Tony Wasserka2014-12-20
|
* Pica: Merge texture lookup logic for DebugUtils and Rasterizer.Gravatar Tony Wasserka2014-12-20
| | | | This effectively adds support for a lot texture formats in the rasterizer.
* citra-qt: Fix invalid memory read upon program startup.Gravatar Tony Wasserka2014-12-20
| | | | This was caused by the framebuffer display widget not checking whether we are actually in a valid emulation state or not.
* Pica: Initial support for multitexturing.Gravatar Tony Wasserka2014-12-20
|
* citra-qt: static-constify a map.Gravatar Tony Wasserka2014-12-20
|
* Clean up some warningsGravatar Chin2014-12-20
|
* HLE: Rename namespaces to match move & fix initialization orderGravatar Yuri Kunde Schlesner2014-12-16
|
* Remove old logging systemGravatar Yuri Kunde Schlesner2014-12-13
|
* Add configurable per-class log filteringGravatar Yuri Kunde Schlesner2014-12-13
|
* Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner2014-12-13
|
* New logging systemGravatar Yuri Kunde Schlesner2014-12-13
|
* More cleanups.Gravatar Tony Wasserka2014-12-09
|
* citra-qt: Rename "Stop Tracing" to "Finish Tracing".Gravatar Tony Wasserka2014-12-09
| | | | This better reflects that no commands are supposed to show up until you hit the button a second time.
* More coding style fixes.Gravatar Tony Wasserka2014-12-09
|
* Some code cleanup.Gravatar Tony Wasserka2014-12-09
|
* citra-qt: Add pica framebuffer widget.Gravatar Tony Wasserka2014-12-09
|
* citra_qt: Add enhanced texture debugging widgets.Gravatar Tony Wasserka2014-12-09
| | | | Double-clicking a texture parameter command in the pica command lists will spawn these as a new tab in the pica command list dock area.
* citra-qt: Add texture viewer to Pica command list.Gravatar Tony Wasserka2014-12-09
| | | | The texture viewer is enabled when selecting a write command to one of the texture config registers.
* Add GUI widget for controlling pica breakpoints.Gravatar Tony Wasserka2014-12-09
|
* Pica/DebugUtils: Add breakpoint functionality.Gravatar Tony Wasserka2014-12-09
|
* citra-qt: Polish the pica tracing widget.Gravatar Tony Wasserka2014-12-09
| | | | | Changed start/stop button to reflect current tracing status. Properly labeled column headers.
* citra-qt: Add a utility spinbox class called CSpinBox.Gravatar Tony Wasserka2014-12-09
| | | | | | | This class has a few advantages over the regular QSpinBox: - QSpinBox stores its as signed 32 bit integers, which for instance is unsuitable for representing memory addresses. CSpinBox uses 64 bit integers instead. - QSpinBox does not provide an easy way to handle number input from bases different than 10. - QSpinBox is quite inflexible in general and almost any sort of customization requires reimplementing it anyway.
* Loader: Add 3DSX supportGravatar ichfly2014-12-08
|
* Change NULLs to nullptrs.Gravatar Rohit Nirmal2014-12-03
|
* Merge pull request #196 from archshift/settingsGravatar bunnei2014-11-30
|\ | | | | Merge Config::ReadXYZs
* | Remove tabs in all files except in skyeye imports and in generated GL codeGravatar Emmanuel Gil Peyrot2014-11-19
| |
* | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵Gravatar Emmanuel Gil Peyrot2014-11-19
| | | | | | | | or generated
| * Merge Config::ReadXYZsGravatar archshift2014-11-18
| |
* | citra-qt: Small cleanup.Gravatar Tony Wasserka2014-11-18
| |
* | EmuWindow: Remove window title getters/setters.Gravatar Tony Wasserka2014-11-18
| | | | | | | | | | The window title is none of the emulation core's business. The GUI code is free to put whatever it wants there. Providing properly thread-safe window title getters and setters is a mess anyway.
* | EmuWindow: Add support for specifying minimal client area sizes.Gravatar Tony Wasserka2014-11-18
| |
* | Fixup EmuWindow interface and implementations thereof.Gravatar Tony Wasserka2014-11-18
| |
* | Viewport scaling and display density independenceGravatar Kevin Hartman2014-11-18
|/ | | | | The view is scaled to be as large as possible, without changing the aspect, within the bounds of the window. On "retina" displays, or other displays where window units != pixels, the view should no longer draw incorrectly.
* Merge pull request #159 from SeannyM/enable_logGravatar Tony Wasserka2014-11-15
|\ | | | | Add support for disabling log from settings
* | Citra-Qt: Use Core::RunLoop when not single stepping.Gravatar bunnei2014-11-11
| |
* | Qt: Auto-start game when selected, play game that's passed via argv[1].Gravatar archshift2014-11-04
| | | | | | | | Also moves system initialization to when the game is booted.
| * Add support for disabling log from settingsGravatar Sean2014-11-03
| |
* | Fixed capitalization issuesGravatar Gareth Poole2014-11-01
| |
* | Merge pull request #151 from archshift/dyncom-enabledGravatar bunnei2014-10-27
|\ \ | | | | | | Use configuration files to enable or disable the new dyncom interpreter.
| * | Added `gpu_refresh_rate` config setting for the new interpreter speed hack.Gravatar archshift2014-10-27
| | |
| * | Use configuration files to enable or disable the new dyncom interpreter.Gravatar archshift2014-10-27
| |/
* / Add `override` keyword through the code.Gravatar Yuri Kunde Schlesner2014-10-26
|/ | | | This was automated using `clang-modernize`.
* ARM: Reorganized file structure to move shared SkyEye code to a more common ↵Gravatar bunnei2014-10-25
| | | | | | area. Removed s_ prefix
* Use config files to store whether SDMC is enabled or notGravatar archshift2014-10-22
| | | | Before, it used to use whether the directory actually existed. As a result, .citra-emu/sdmc was never auto-created (something quite confusing to me until I read through the logs).
* OpenGL renderer: Request a forward compatible context in citra-qtGravatar Yuri Kunde Schlesner2014-10-12
| | | | This should fix context creation on OS X. Also requests a core context on all platforms in Citra-GLFW, for consistency.
* Added configuration file system.Gravatar archshift2014-10-07
| | | | Uses QSettings on citra-qt, and inih on citra-cli.
* Merge pull request #97 from archshift/cleanupGravatar bunnei2014-09-13
|\ | | | | Small, general code cleanup
* | Added support for multiple input device types for KeyMap and connected Qt.Gravatar Kevin Hartman2014-09-12
| |