summaryrefslogtreecommitdiffstats
path: root/src/citra_qt (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Change NULLs to nullptrs.Rohit Nirmal2014-12-033-7/+7
|
* Merge pull request #196 from archshift/settingsbunnei2014-12-012-44/+19
|\ | | | | Merge Config::ReadXYZs
| * Merge Config::ReadXYZsarchshift2014-11-192-44/+19
| |
* | Remove tabs in all files except in skyeye imports and in generated GL codeEmmanuel Gil Peyrot2014-11-194-21/+21
| |
* | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generatedEmmanuel Gil Peyrot2014-11-194-7/+7
| |
* | citra-qt: Small cleanup.Tony Wasserka2014-11-181-2/+1
| |
* | EmuWindow: Remove window title getters/setters.Tony Wasserka2014-11-182-9/+5
| | | | | | | | | | 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.Tony Wasserka2014-11-182-0/+9
| |
* | Fixup EmuWindow interface and implementations thereof.Tony Wasserka2014-11-182-25/+47
| |
* | Viewport scaling and display density independenceKevin Hartman2014-11-182-0/+25
|/ | | | | 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_logTony Wasserka2014-11-153-0/+22
|\ | | | | Add support for disabling log from settings
| * Add support for disabling log from settingsSean2014-11-033-0/+22
| |
* | Citra-Qt: Use Core::RunLoop when not single stepping.bunnei2014-11-121-12/+9
| |
* | Qt: Auto-start game when selected, play game that's passed via argv[1].archshift2014-11-051-2/+7
| | | | | | | | Also moves system initialization to when the game is booted.
* | Fixed capitalization issuesGareth Poole2014-11-021-2/+2
| |
* | Merge pull request #151 from archshift/dyncom-enabledbunnei2014-10-282-1/+19
|\ \ | | | | | | Use configuration files to enable or disable the new dyncom interpreter.
| * | Added `gpu_refresh_rate` config setting for the new interpreter speed hack.archshift2014-10-281-0/+2
| | |
| * | Use configuration files to enable or disable the new dyncom interpreter.archshift2014-10-282-1/+17
| |/
* / Add `override` keyword through the code.Yuri Kunde Schlesner2014-10-264-12/+12
|/ | | | This was automated using `clang-modernize`.
* ARM: Reorganized file structure to move shared SkyEye code to a more common area.bunnei2014-10-251-1/+1
| | | | Removed s_ prefix
* Use config files to store whether SDMC is enabled or notarchshift2014-10-232-0/+17
| | | | 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-qtYuri Kunde Schlesner2014-10-121-3/+3
| | | | 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.archshift2014-10-086-31/+135
| | | | Uses QSettings on citra-qt, and inih on citra-cli.
* Merge pull request #97 from archshift/cleanupbunnei2014-09-141-3/+2
|\ | | | | Small, general code cleanup
| * bootmanager::EmuThread: fixed initialization orderarchshift2014-09-071-3/+2
| |
* | Added support for multiple input device types for KeyMap and connected Qt.Kevin Hartman2014-09-122-18/+33
| |
* | core: Make the ARM disassembler use std::string internallyLioncash2014-09-062-6/+4
|/
* Remove hand-crafted Visual Studio solution.Yuri Kunde Schlesner2014-09-015-1105/+0
|
* CMake cleanupYuri Kunde Schlesner2014-09-011-16/+23
| | | | | | | | Several cleanups to the buildsystem: - Do better factoring of common libs between platforms. - Add support to building on Windows. - Remove Qt4 support. - Re-sort file lists and add missing headers.
* Replace GLEW with a glLoadGen loader.Yuri Kunde Schlesner2014-09-011-1/+1
| | | | | | | | | This should fix the GL loading errors that occur in some drivers due to the use of deprecated functions by GLEW. Side benefits are more accurate auto-completion (deprecated function and symbols don't exist) and faster pointer loading (less entrypoints to load). In addition it removes an external library depency, simplifying the build system a bit and eliminating one set of binary libraries for Windows.
* Loader: Added support for loading raw BIN executables.bunnei2014-08-281-1/+1
| | | | | | - Useful for debugging homebrew Qt: Updated GUI to support loading .bin files.
* Pica: Add support for dumping textures.Tony Wasserka2014-08-251-1/+1
|
* Pica/citra-qt: Replace command list view and command list debugging code with something more sophisticated.Tony Wasserka2014-08-253-126/+64
|
* Pass format to the QGLWidget and use atomic instead of mutex.Sacha2014-08-242-13/+5
|
* Fix EmuThread loop by ensuring it exits properly.Sacha2014-08-242-9/+29
| | | | | Note: There is a pre-existing issue with booting a new game in that it keeps the old EmuThread. The GL code now supports this but the Core still doesn't.
* Fix the threading for GL Context in Qt5.Sacha2014-08-243-9/+21
| | | | Connect the emu_thread start/finish to a moveContext slot.
* Revert "Removed redundant loop in EmuThread::run()"archshift2014-08-201-7/+10
|
* Add Qt5 option. Use Qt5 by default.Sacha2014-08-191-13/+19
|
* CMake CleanupSacha2014-08-181-23/+9
|
* Removed redundant loop in EmuThread::run()archshift2014-08-171-10/+7
|
* Bootmanager: changed `filename` to std::stringarchshift2014-08-154-9/+10
|
* Merge pull request #41 from archshift/itrbunnei2014-08-121-15/+15
|\ | | | | Changed iterators to use auto, many of which using range-based loops
| * Changed iterators to use auto, some of which using range-based loopsarchshift2014-08-121-15/+15
| |
* | Pica: Add command processor.Tony Wasserka2014-08-121-1/+1
| |
* | Remove the fancy RegisterSet class introduced in 4c2bff61e.Tony Wasserka2014-08-121-1/+1
|/ | | | | While it was some nice and fancy template usage, it ultimately had many practical issues regarding length of involved expressions under regular usage as well as common code completion tools not being able to handle the structures. Instead, we now use a more conventional approach which is a lot more clean to use.
* GSP: Removed dumb GX prefixes to functions/structs in GSP namespace.bunnei2014-08-061-8/+8
| | | | - Various other cleanups.
* Qt: Removed unnecessary HW::Update.bunnei2014-08-061-1/+0
|
* Merge pull request #27 from neobrain/disassembly_view_rewritebunnei2014-07-232-60/+204
|\ | | | | citra-qt: Rewrite disassembly view.
| * citra-qt: Show function names in disassembler based on bunnei's suggestion.Tony Wasserka2014-07-231-5/+21
| |
| * Disassembler: Chose slightly lower value for chunk size.Tony Wasserka2014-07-231-1/+3
| |
| * citra-qt: Rewrite disassembly view.Tony Wasserka2014-07-022-60/+186
| |
* | GSP: Clean up GX command processing a lot and treat command id as a u8 rather than a u32.Tony Wasserka2014-07-231-16/+18
| | | | | | | | Anonymous structs are not standard C++, hence don't use them.
* | Qt: Updated open dialog to include NCCH formats.bunnei2014-07-051-1/+1
|/
* Merge pull request #22 from bunnei/loader-improvementsbunnei2014-06-252-7/+5
|\ | | | | Refactor loader code and add preliminary NCCH support
| * Loader: Implemented AppLoader interface for abstracting application loading.bunnei2014-06-251-5/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
| * Loader: Moved elf and loader modules to a "loader" subdirectory.bunnei2014-06-172-2/+3
| |
* | citra_qt: Removed autogenerated files from repo and fixed build issues.bunnei2014-06-2211-710/+5
|/
* Merge branch 'threading' of https://github.com/bunnei/citrabunnei2014-06-141-1/+1
|\ | | | | | | | | | | Conflicts: src/core/hle/function_wrappers.h src/core/hle/service/gsp.cpp
| * qt: updated disassembler to show 2X as many instructionsbunnei2014-06-051-1/+1
| |
* | Further refine GPU command list debugging.Tony Wasserka2014-06-121-4/+10
| |
* | Refine command list debugging functionality and its qt interface.Tony Wasserka2014-06-122-19/+107
| |
* | citra-qt: Add command list view.Tony Wasserka2014-06-127-0/+127
| |
* | citra-qt: Add GX command history viewer.Tony Wasserka2014-06-127-7/+151
| |
* | Merge branch 'threading'bunnei2014-05-231-1/+1
|\|
| * Merge branch 'master' into threadingbunnei2014-05-171-0/+3
| |\
| * | added ability to load AXF files (same as ELF)bunnei2014-05-161-1/+1
| | |
* | | Merge pull request #2 from archshift/issue-7-fixbunnei2014-05-202-17/+42
|\ \ \ | |_|/ |/| | Fixes issues with building Citra on OSX
| * | Improved clarity and whitespacearchshift2014-05-201-1/+1
| | | | | | | | | | | | Changed QGL version to 3,2 in order to be less restrictive, yet it should still change up to 4,1 on OSX on Qt5.
| * | CMakeLists: rename HEADS, improved commentsarchshift2014-05-201-2/+2
| | | | | | | | | | | | Changes for clarity of comments, removed redundant compiler flags.
| * | Merge remote-tracking branch 'upstream/master' into issue-7-fixarchshift2014-05-174-11/+31
| |\|
| * | Fixed indentsarchshift2014-05-012-20/+20
| | |
| * | Linux supportarchshift2014-05-011-1/+1
| | |
| * | Sets OGL version for Qt; will only work with Qt5archshift2014-05-011-6/+10
| | |
| * | A bit of Cmake lovearchshift2014-05-011-2/+2
| | |
| * | IT'S ALIVE!archshift2014-04-291-2/+23
| | |
* | | updated how we call ARM core to make things much fasterbunnei2014-05-171-0/+3
| |/ |/|
* | added symbol map load function to Qt GUIbunnei2014-05-014-11/+31
|/
* made qt window title consistentbunnei2014-04-241-0/+4
|
* fixes to build on linuxbunnei2014-04-231-12/+12
|
* updated CMakeLists for missing filesShizZy2014-04-231-6/+6
|
* Re-enable toggling window mode.Mathieu Vaillancourt2014-04-224-48/+55
|
* fixed order of LogManager and System initbunnei2014-04-221-1/+1
|
* Remove unused QTableViewMathieu Vaillancourt2014-04-193-37/+2
|
* UI/debugger changesMathieu Vaillancourt2014-04-1919-233/+285
|
* Init window size from VideoCore. Start changing the default window behavior...Mathieu Vaillancourt2014-04-135-29/+17
|
* Show symbols in disasmMathieu Vaillancourt2014-04-131-1/+9
|
* Fixed GPLv2 license issuebunnei2014-04-111-2/+7
| | | Doing this from work via GitHub - Sorry for not combining with previous commits
* Fixed GPLv2 license issuebunnei2014-04-111-2/+7
| | | Doing this from work via GitHub - Sorry for not combining with previous commits
* Fixed GPLv2 license issuebunnei2014-04-111-2/+7
|
* Temporarily "fix" citra_qt for WindowsMathieu Vaillancourt2014-04-1117-577/+90
|
* fixed project includes to use new directory structurebunnei2014-04-092-76/+108
|
* got rid of 'src' folders in each sub-projectbunnei2014-04-0934-0/+0
|
* Remove Core::GetState(). Use new ARM_Interface instead.Mathieu Vaillancourt2014-04-053-27/+25
|
* More Qt changes for debuggerMathieu Vaillancourt2014-04-049-187/+190
|
* Load file in qt windowMathieu Vaillancourt2014-04-011-12/+12
|
* Basic QT windowMathieu Vaillancourt2014-04-0140-0/+4463