summaryrefslogtreecommitdiff
path: root/src/citra_qt (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Massive removal of unused modulesGravatar James Rowe2018-01-1268-10017/+0
|
* config: Default CPU core to Unicorn.Gravatar bunnei2018-01-121-1/+1
|
* configuration: Add cpu_core configuration optionGravatar MerryMage2018-01-123-8/+17
|
* arm_dynarmic: Implement coreGravatar MerryMage2018-01-121-1/+1
|
* frontend: Update for undocked Switch screen layout.Gravatar bunnei2018-01-101-2/+2
|
* Threads: Added enum values for the Switch's 4 cpu cores and implemented ↵Gravatar Subv2018-01-101-6/+3
| | | | svcGetInfo(AllowedCpuIdBitmask)
* kernel: Rename Semaphore to ConditionVariable.Gravatar bunnei2018-01-082-10/+11
|
* Kernel: Actually wake up the requested number of threads in Semaphore::Release.Gravatar Subv2018-01-081-3/+2
| | | | | | Also properly keep track of data in guest memory, this fixes managing the semaphore from userland. It was found that Semaphores are actually Condition Variables, with Release(1) and Release(-1) being equivalent to notify_one and notify_all. We should change the name of the class to reflect this.
* Kernel: Properly keep track of mutex lock data in the guest memory. This ↵Gravatar Subv2018-01-081-4/+3
| | | | fixes userland locking/unlocking.
* citra_qt: Remove VFP registers, since this isn't used anyways and caused an ↵Gravatar bunnei2018-01-041-4/+0
| | | | assert.
* externals: Use unicorn DLL instead of static lib.Gravatar bunnei2018-01-041-0/+2
|
* arm: Remove SkyEye/Dyncom code that is ARMv6-only.Gravatar bunnei2018-01-021-45/+1
|
* core: Refactor MakeMagic usage and remove dead code.Gravatar bunnei2017-10-151-42/+0
|
* Remove more 3DS-specific code.Gravatar bunnei2017-10-121-1/+1
|
* Remove lots more 3DS-specific code.Gravatar bunnei2017-10-122-106/+2
|
* hle: Remove a large amount of 3ds-specific service code.Gravatar bunnei2017-10-101-32/+0
|
* Fixed type conversion ambiguityGravatar Huw Pascoe2017-09-302-3/+4
|
* citra-qt: fix some untranslated stringsGravatar wwylele2017-09-243-21/+22
|
* WebService: Verify username and token (#2930)Gravatar B3n302017-09-185-26/+130
| | | | | | | | | | * WebService: Verify username and token; Log errors in PostJson * Fixup: added docstrings to the functions * Webservice: Added Icons to the verification, imrpved error detection in cpr, fixup nits * fixup: fmt warning
* Fix icon for citra qtGravatar James Rowe2017-09-031-1/+3
|
* Add manifestGravatar DaMan2017-09-021-0/+8
|
* Merge pull request #2899 from wwylele/touch-refactorGravatar bunnei2017-08-291-0/+3
|\ | | | | Refactor touch input into a TouchDevice
| * EmuWindow: refactor touch input into a TouchDeviceGravatar wwylele2017-08-241-0/+3
| |
* | qt: Add an option to view/regenerate telemetry ID.Gravatar bunnei2017-08-252-4/+12
| |
* | # This is a combination of 2 commits.Gravatar bunnei2017-08-251-3/+30
| | | | | | | | | | | | | | | | | | | | # This is the 1st commit message: qt: Add web configuration tab. # The commit message #2 will be skipped: # fixup! qt: Add web configuration tab.
* | qt: Add web configuration tab.Gravatar bunnei2017-08-256-2/+217
| |
* | telemetry: Log frontend type.Gravatar bunnei2017-08-251-0/+2
| |
* | settings: Add enable_telemetry, citra_username, and citra_token.Gravatar bunnei2017-08-251-0/+6
| |
* | citra_qt: Show one-time callout messages to user.Gravatar bunnei2017-08-254-0/+50
| |
* | SidebySide Layout (#2859)Gravatar ThaMighty902017-08-251-3/+8
|/ | | | | | | | | | | | | | | | | | | | | | * added a SidebySide Layout * Reworked, so both screen have the same height and cleaned up screen translates. * added the option in the UI, hope this is the right way to do it. formated framebuffer_layout.cpp * delete the x64 files * deleted ui_configure_graphics.h * added Option for the Layout in the xml * got rid of SIDE_BY_SIDE_ASPECT_RATIO because it was useless. pulled translate into variables * changed shift variables to u32 and moved them in their respective branch. remove notr="true" for the Screen layout drop down * reworked intends :). changed function description for SideFrameLayout * some description reworking
* move MotionEmu from core/frontend to input_common as a InputDeviceGravatar wwylele2017-08-113-10/+10
|
* Quickfix typo in OpenGL 3.3 error messageGravatar Andrea Pascal2017-08-041-1/+1
| | | User pointed out on the Discord server that "nothave" is erroneously concatenated. Added a space to prevent it.
* debugger/shader: display LOOPGravatar wwylele2017-07-201-1/+3
|
* debugger/shader: print the invert flag for JMPUGravatar wwylele2017-07-201-0/+4
|
* debugger/shader: fix address register for reverted arithmetic opGravatar wwylele2017-07-201-20/+9
|
* debugger/shader: fix inverted uniform flow controlGravatar wwylele2017-07-201-2/+2
|
* Merge pull request #2804 from Kloen/themingGravatar bunnei2017-07-177-2/+73
|\ | | | | citra-qt: UI Themes
| * citra-qt: Add option to configure the UI themeGravatar Kloen2017-06-242-0/+37
| |
| * citra-qt: load ui theme at startup and config change.Gravatar Kloen2017-06-242-0/+22
| |
| * citra-qt: Add Dark theme from https://github.com/ColinDuquesnoy/QDarkStyleSheetGravatar Kloen2017-06-241-2/+5
| |
| * citra-qt: add new uisetting->themeGravatar Kloen2017-06-242-0/+9
| |
* | settings: Add telemetry endpoint URL.Gravatar bunnei2017-07-101-0/+12
| |
* | Implement basic virtual Room support based on enet (#2803)Gravatar B3n302017-07-072-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added support for network with ENet lib, connecting is possible, but data can't be sent, yet. * fixup! Added support for network with ENet lib, * fixup! CLang * fixup! Added support for network with ENet lib, * fixup! Added support for network with ENet lib, * fixup! Clang format * More fixups! * Moved ENetHost* and ENetPeer* into pimpl classes * fixup! Moved ENetHost* and ENetPeer* into pimpl classes * fixup! Clang again * fixup! Moved ENetHost* and ENetPeer* into pimpl classes * fixup! Moved ENetHost* and ENetPeer* into pimpl classes * fixup! Moved ENetHost* and ENetPeer* into pimpl classes
* | configure_debug: Add label warning that CPU JIT needs to be disabled for ↵Gravatar MerryMage2017-06-281-0/+7
|/ | | | gdbstub to work
* Changing default values for bg_red, bg_green, and bg_blue from 1.0 to 0.0.Gravatar chris0626892017-06-211-3/+3
|
* Session: Remove/add some forward declarationsGravatar Yuri Kunde Schlesner2017-06-081-1/+0
|
* Service: Remove unnecessary includes from service.hGravatar Yuri Kunde Schlesner2017-06-061-0/+1
| | | | | This has a huge fallout in terms of needing to fix other files because all service implementations included that file.
* Remove unused imports in game_list_p.hGravatar Kloen2017-06-031-2/+0
|
* Addressed Bunnei's review comments, and made some other tweaks:Gravatar TheKoopaKingdom2017-06-021-5/+10
| | | | | - Deleted GetStatus() because it wasn't used anywhere outside of Core::System. - Fixed design flaw where the message bar status could be set despite the game being stopped.
* Fixed wiki URLs.Gravatar TheKoopaKingdom2017-06-021-6/+8
|