Lioncash 
								
							 
						 
						
							
							
							
							
								
							
							
								4e7092881f 
								
							 
						 
						
							
							
								
								graphics_cmdlists: Get rid of variable shadowing  
							
							
							
						 
						
							2016-12-11 04:33:24 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Lioncash 
								
							 
						 
						
							
							
							
							
								
							
							
								1e5644935d 
								
							 
						 
						
							
							
								
								graphics_cmdlists: Get rid of an unused variable  
							
							
							
						 
						
							2016-12-10 20:01:27 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Lioncash 
								
							 
						 
						
							
							
							
							
								
							
							
								f1ee7e4e0e 
								
							 
						 
						
							
							
								
								graphics_cmdlists: Make LoadTexture and TextureInfoWidget src arguments const  
							
							
							
						 
						
							2016-12-10 20:01:22 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Lioncash 
								
							 
						 
						
							
							
							
							
								
							
							
								dcb8113347 
								
							 
						 
						
							
							
								
								graphics_cmdlists: Make LoadImage internally linked  
							
							... 
							
							
							
							Puts the TextureInfoWidget definition in the anonymous namespace as well,
as it's only used in the translation unit as well. 
							
						 
						
							2016-12-10 20:00:40 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Lioncash 
								
							 
						 
						
							
							
							
							
								
							
							
								963aedd8cc 
								
							 
						 
						
							
							
								
								Add all services to the Service namespace  
							
							... 
							
							
							
							Previously there was a split where some of the services were in the
Service namespace and others were not. 
							
						 
						
							2016-12-11 00:07:27 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									MerryMage 
								
							 
						 
						
							
							
							
							
								
							
							
								a2d474386c 
								
							 
						 
						
							
							
								
								configure_input: Modernize and cleanup input configuration tab  
							
							... 
							
							
							
							* Removed use of raw QTimer* pointer.
* Update to use type-safe QObject::connect.
* getKeyName can be a static local function.
* Prefer to use function arguments instead of member variables.
* Store Qt::Key instead of converting string back into keycode. 
							
						 
						
							2016-12-10 23:30:28 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Subv 
								
							 
						 
						
							
							
							
							
								
							
							
								17b29d8865 
								
							 
						 
						
							
							
								
								WaitSynch: Removed unused variables and reduced SharedPtr copies.  
							
							... 
							
							
							
							Define a variable with the value of the sync timeout error code.
Use a boost::flat_map instead of an unordered_map to hold the equivalence of objects and wait indices in a WaitSynchN call. 
							
						 
						
							2016-12-09 12:23:09 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									wwylele 
								
							 
						 
						
							
							
							
							
								
							
							
								84e78790ab 
								
							 
						 
						
							
							
								
								Config: auto-select region and language  
							
							
							
						 
						
							2016-12-07 20:52:42 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									emmauss 
								
							 
						 
						
							
							
							
							
								
							
							
								c4e4fa53d9 
								
							 
						 
						
							
							
								
								Implement Frame rate limiter ( #2223 )  
							
							... 
							
							
							
							* implement frame limiter
* fixes 
							
						 
						
							2016-12-06 14:33:19 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Jannik Vogel 
								
							 
						 
						
							
							
							
							
								
							
							
								d2c39bdb29 
								
							 
						 
						
							
							
								
								Unify Windows ICON resource name  
							
							
							
						 
						
							2016-12-05 19:09:16 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Jannik Vogel 
								
							 
						 
						
							
							
							
							
								
							
							
								45d941d62e 
								
							 
						 
						
							
							
								
								Support mingw cross-compile  
							
							
							
						 
						
							2016-12-05 19:09:16 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Subv 
								
							 
						 
						
							
							
							
							
								
							
							
								bdad00c73f 
								
							 
						 
						
							
							
								
								Threading: Added some utility functions and const correctness.  
							
							
							
						 
						
							2016-12-04 09:58:36 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Subv 
								
							 
						 
						
							
							
							
							
								
							
							
								8634b8cb83 
								
							 
						 
						
							
							
								
								Threading: Reworked the way our scheduler works.  
							
							... 
							
							
							
							Threads will now be awakened when the objects they're waiting on are signaled, instead of repeating the WaitSynchronization call every now and then.
The scheduler is now called once after every SVC call, and once after a thread is awakened from sleep by its timeout callback.
This new implementation is based off reverse-engineering of the real kernel.
See https://gist.github.com/Subv/02f29bd9f1e5deb7aceea1e8f019c8f4  for a more detailed description of how the real kernel handles rescheduling. 
							
						 
						
							2016-12-03 22:38:14 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Jannik Vogel 
								
							 
						 
						
							
							
							
							
								
							
							
								8efeb6ee2b 
								
							 
						 
						
							
							
								
								Remove unused version.h  
							
							
							
						 
						
							2016-12-01 16:38:46 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Subv 
								
							 
						 
						
							
							
							
							
								
							
							
								2eceee3a4c 
								
							 
						 
						
							
							
								
								Fixed the rebase mistakes.  
							
							
							
						 
						
							2016-11-30 23:28:31 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Yuri Kunde Schlesner 
								
							 
						 
						
							
							
							
							
								
							
							
								3174bfd50c 
								
							 
						 
						
							
							
								
								Merge pull request  #2196  from Subv/system_mode  
							
							... 
							
							
							
							Kernel/Loader: Grab the system mode from the NCCH ExHeader. 
							
						 
						
							2016-11-27 17:04:11 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Subv 
								
							 
						 
						
							
							
							
							
								
							
							
								d171409f29 
								
							 
						 
						
							
							
								
								Kernel/Loader: Grab the system mode from the NCCH ExHeader.  
							
							... 
							
							
							
							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-27 18:03:48 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Emmanuel Gil Peyrot 
								
							 
						 
						
							
							
							
							
								
							
							
								0820c99462 
								
							 
						 
						
							
							
								
								GPU: Remove the broken frame_skip option.  
							
							... 
							
							
							
							Fixes  #1960 . 
						
							2016-11-27 21:19:56 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Subv 
								
							 
						 
						
							
							
							
							
								
							
							
								1323ab2f5f 
								
							 
						 
						
							
							
								
								Kernel/Loader: Grab the system mode from the NCCH ExHeader.  
							
							... 
							
							
							
							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 20:40:04 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									bunnei 
								
							 
						 
						
							
							
							
							
								
							
							
								fb13bfe693 
								
							 
						 
						
							
							
								
								Merge pull request  #2172  from jroweboy/fix-mingw  
							
							... 
							
							
							
							Fix mingw compilation support 
							
						 
						
							2016-11-15 20:07:23 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									bunnei 
								
							 
						 
						
							
							
							
							
								
							
							
								5a31552764 
								
							 
						 
						
							
							
								
								Merge pull request  #1753  from jroweboy/frame_layouts  
							
							... 
							
							
							
							Support additional screen layouts. 
							
						 
						
							2016-11-15 19:57:08 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									James Rowe 
								
							 
						 
						
							
							
							
							
								
							
							
								c3ea6f4ddb 
								
							 
						 
						
							
							
								
								Add mingw compile support  
							
							
							
						 
						
							2016-11-13 23:50:46 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Pringo 
								
							 
						 
						
							
							
							
							
								
							
							
								51750dc8f5 
								
							 
						 
						
							
							
								
								Minor Menu Fixes  
							
							
							
						 
						
							2016-11-11 09:58:55 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									James Rowe 
								
							 
						 
						
							
							
							
							
								
							
							
								d9305b0a07 
								
							 
						 
						
							
							
								
								Add default hotkey to swap primary screens.  
							
							... 
							
							
							
							Also minor style changes 
							
						 
						
							2016-11-05 03:46:43 -06:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									James Rowe 
								
							 
						 
						
							
							
							
							
								
							
							
								2b1654ad9b 
								
							 
						 
						
							
							
								
								Support additional screen layouts.  
							
							... 
							
							
							
							Allows users to choose a single screen layout or a large screen layout.
Adds a configuration option to change the prominent screen. 
							
						 
						
							2016-11-05 02:55:41 -06:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Jan Beich 
								
							 
						 
						
							
							
							
							
								
							
							
								2240cb2eb0 
								
							 
						 
						
							
							
								
								build: add default install for DragonFly, Solaris, etc.  
							
							
							
						 
						
							2016-10-27 23:28:30 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Ricardo de Almeida Gonzaga 
								
							 
						 
						
							
							
							
							
								
							
							
								13d46f6820 
								
							 
						 
						
							
							
								
								Fix typos  
							
							
							
						 
						
							2016-10-20 12:26:59 -02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									bunnei 
								
							 
						 
						
							
							
							
							
								
							
							
								09c3e444d4 
								
							 
						 
						
							
							
								
								Merge pull request  #1652  from wwylele/kernal-tool  
							
							... 
							
							
							
							Debugger: implement wait tree widget 
							
						 
						
							2016-10-04 23:01:56 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									wwylele 
								
							 
						 
						
							
							
							
							
								
							
							
								3aa047cd1d 
								
							 
						 
						
							
							
								
								qt: shutdown system if error  
							
							
							
						 
						
							2016-09-22 16:40:33 +08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									wwylele 
								
							 
						 
						
							
							
							
							
								
							
							
								f69a543110 
								
							 
						 
						
							
							
								
								implement wait tree widget  
							
							
							
						 
						
							2016-09-22 13:52:52 +08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Yuri Kunde Schlesner 
								
							 
						 
						
							
							
							
							
								
							
							
								84fbbe2629 
								
							 
						 
						
							
							
								
								Use negative priorities to avoid special-casing the self-include  
							
							
							
						 
						
							2016-09-21 00:15:56 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Emmanuel Gil Peyrot 
								
							 
						 
						
							
							
							
							
								
							
							
								ebdae19fd2 
								
							 
						 
						
							
							
								
								Remove empty newlines in #include blocks.  
							
							... 
							
							
							
							This makes clang-format useful on those.
Also add a bunch of forgotten transitive includes, which otherwise
prevented compilation. 
							
						 
						
							2016-09-21 11:15:47 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Yuri Kunde Schlesner 
								
							 
						 
						
							
							
							
							
								
							
							
								396a8d91a4 
								
							 
						 
						
							
							
								
								Manually tweak source formatting and then re-run clang-format  
							
							
							
						 
						
							2016-09-18 21:14:25 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Emmanuel Gil Peyrot 
								
							 
						 
						
							
							
							
							
								
							
							
								dc8479928c 
								
							 
						 
						
							
							
								
								Sources: Run clang-format on everything.  
							
							
							
						 
						
							2016-09-18 09:38:01 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									bunnei 
								
							 
						 
						
							
							
							
							
								
							
							
								d532f6b496 
								
							 
						 
						
							
							
								
								qt: Add UI configuration option to enable CPU JIT.  
							
							
							
						 
						
							2016-09-15 17:49:28 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									bunnei 
								
							 
						 
						
							
							
							
							
								
							
							
								14085ec670 
								
							 
						 
						
							
							
								
								core: Add configuration option for CPU JIT.  
							
							
							
						 
						
							2016-09-15 17:49:27 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									wwylele 
								
							 
						 
						
							
							
							
							
								
							
							
								c0262001d8 
								
							 
						 
						
							
							
								
								Qt: fix birthday combo box updating  
							
							
							
						 
						
							2016-09-13 16:15:42 +08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									wwylele 
								
							 
						 
						
							
							
							
							
								
							
							
								bdc59c4c21 
								
							 
						 
						
							
							
								
								Qt: unify running detection  
							
							
							
						 
						
							2016-09-02 20:18:45 +08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									bunnei 
								
							 
						 
						
							
							
							
							
								
							
							
								09063dc5bb 
								
							 
						 
						
							
							
								
								Merge pull request  #2032  from bunnei/qt-graphics  
							
							... 
							
							
							
							Qt graphics configure & V-Sync option 
							
						 
						
							2016-08-31 22:20:54 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									bunnei 
								
							 
						 
						
							
							
							
							
								
							
							
								a71013cf16 
								
							 
						 
						
							
							
								
								qt: Rename all "toogle" to "toggle".  
							
							
							
						 
						
							2016-08-31 22:12:20 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									MerryMage 
								
							 
						 
						
							
							
							
							
								
							
							
								dc3f6a34f8 
								
							 
						 
						
							
							
								
								configure_audio: User-configuratble option to enable/disable audio stretching  
							
							
							
						 
						
							2016-08-31 16:59:37 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									bunnei 
								
							 
						 
						
							
							
							
							
								
							
							
								74842116b2 
								
							 
						 
						
							
							
								
								qt: Add an option to settings for enabling V-Sync.  
							
							
							
						 
						
							2016-08-29 21:42:33 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									bunnei 
								
							 
						 
						
							
							
							
							
								
							
							
								02702c6605 
								
							 
						 
						
							
							
								
								qt: Recreate GL context on startup to support changing V-Sync.  
							
							
							
						 
						
							2016-08-29 21:42:32 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									bunnei 
								
							 
						 
						
							
							
							
							
								
							
							
								08ad9b36d4 
								
							 
						 
						
							
							
								
								config: Add a setting for graphics V-Sync.  
							
							
							
						 
						
							2016-08-29 21:42:30 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									bunnei 
								
							 
						 
						
							
							
							
							
								
							
							
								2267f98941 
								
							 
						 
						
							
							
								
								qt: Add a configuration tab for Graphics and move relevant fields.  
							
							
							
						 
						
							2016-08-29 21:42:29 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									bunnei 
								
							 
						 
						
							
							
							
							
								
							
							
								7b4dcacbb2 
								
							 
						 
						
							
							
								
								citra: Default to HW renderer.  
							
							
							
						 
						
							2016-08-15 23:30:02 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Anon 
								
							 
						 
						
							
							
							
							
								
							
							
								e91327c86a 
								
							 
						 
						
							
							
								
								Input GUI: Add tab to remap controls ( #1900 )  
							
							
							
						 
						
							2016-07-29 08:45:49 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Dale Whinham 
								
							 
						 
						
							
							
							
							
								
							
							
								78b97ee364 
								
							 
						 
						
							
							
								
								CMake: Fix Info.plist template for citra_qt/OSX  
							
							... 
							
							
							
							The Info.plist template incorrectly uses parentheses instead of curly braces,
which means that building the .app bundle using regular 'make' results in the
variable not being replaced, and hence the app bundle won't start because the
executable name is incorrect.
This commit fixes this issue. 
							
						 
						
							2016-07-21 21:33:54 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									wwylele 
								
							 
						 
						
							
							
							
							
								
							
							
								ec3e99eec7 
								
							 
						 
						
							
							
								
								Qt: add system settings config tab  
							
							
							
						 
						
							2016-07-10 06:22:38 +03:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									bunnei 
								
							 
						 
						
							
							
							
							
								
							
							
								4d31874c7c 
								
							 
						 
						
							
							
								
								Merge pull request  #1923  from yuriks/fix-recursive  
							
							... 
							
							
							
							Fix recursive scanning of directories 
							
						 
						
							2016-06-22 16:27:12 -04:00