aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
* Fix a wrong file name in a commentGravatar chinhodado2015-02-07
|
* vfp_helper: Remove unnecessary extern C blocksGravatar Lioncash2015-02-06
|
* vfp: Move FPSID, FPEXC, and FPSCR values over to enums.Gravatar Lioncash2015-02-06
| | | | Also got rid of duplicate definitions of some of these values.
* Merge pull request #535 from bunnei/color-modifiersGravatar Tony Wasserka2015-02-05
|\ | | | | Implement color/alpha modifiers
| * Rasterizer: Implement the other color and alpha modifiers.Gravatar bunnei2015-02-04
| |
| * VideoCore: Added same-component swizzlers to math utility functions.Gravatar bunnei2015-02-04
| |
* | Merge pull request #537 from lioncash/vfpGravatar bunnei2015-02-04
|\ \ | | | | | | vfp: Fix VCVT
* \ \ Merge pull request #536 from lioncash/deadGravatar bunnei2015-02-04
|\ \ \ | |_|/ |/| | vfp: Throw out unused code
| | * vfp: Fix VCVTGravatar Lioncash2015-02-04
| |/ |/| | | | | | | These variants exclusively read from the single precision regs and write to double-precision registers Fixes issues where converted values would be way off from what they should be due to the results being stored in the wrong registers.
| * vfp: Throw out unused codeGravatar Lioncash2015-02-04
| |
* | Merge pull request #534 from neobrain/disassembler-improvementsGravatar Tony Wasserka2015-02-03
|\ \ | | | | | | Disassembler improvements
| * | citra-qt: Fix horrible scrolling responsiveness in disassembler by giving ↵Gravatar Tony Wasserka2015-02-03
| | | | | | | | | | | | the uniformRowHeight hint.
| * | citra-qt: Fix a crash when double-clicking a disassembler list item.Gravatar Tony Wasserka2015-02-03
| |/
* / dyncom: Remove more unnecessary codeGravatar Lioncash2015-02-03
|/
* core: Fix some warnings on OSXGravatar Lioncash2015-02-03
|
* Kernel: Stop creating useless Handles during object creationGravatar Yuri Kunde Schlesner2015-02-02
| | | | | They're finally unnecessary, and will stop cluttering the application's handle table.
* Kernel: Make WaitObjects share ownership of Threads waiting on themGravatar Yuri Kunde Schlesner2015-02-02
| | | | | | | | | | | | | | | | During normal operation, a thread waiting on an WaitObject and the object hold mutual references to each other for the duration of the wait. If a process is forcefully terminated (The CTR kernel has a SVC to do this, TerminateProcess, though no equivalent exists for threads.) its threads would also be stopped and destroyed, leaving dangling pointers in the WaitObjects. The solution is to simply have the Thread remove itself from WaitObjects when it is stopped. The vector of Threads in WaitObject has also been changed to hold SharedPtrs, just in case. (Better to have a reference cycle than a crash.)
* Explicitly instantiate constructors/destructors for Kernel objectsGravatar Yuri Kunde Schlesner2015-02-02
| | | | | | This should speed up compile times a bit, as well as enable more liberal use of forward declarations. (Due to SharedPtr not trying to emit the destructor anymore.)
* Mutex: Replace g_mutex_held_locks with a set inside ThreadGravatar Yuri Kunde Schlesner2015-02-02
|
* HID: Fix crash when pressing a key when the emulator is stoppedGravatar Yuri Kunde Schlesner2015-02-02
|
* SVC: Enable CloseHandle, clean up DuplicateHandleGravatar Yuri Kunde Schlesner2015-02-02
|
* Kernel: Fix bug in HandleTable::CloseGravatar Yuri Kunde Schlesner2015-02-02
|
* Kernel: Remove Object::GetHandle (it's not used anymore :D)Gravatar Yuri Kunde Schlesner2015-02-02
|
* Kernel: Introduce unique Object ids for debuggingGravatar Yuri Kunde Schlesner2015-02-02
|
* Kernel: Use separate Handle tables for CoreTiming userdataGravatar Yuri Kunde Schlesner2015-02-02
| | | | This is to support the removal of GetHandle soon
* Kernel: Remove previous scheduled event when a Timer is re-SetGravatar Yuri Kunde Schlesner2015-02-02
|
* FS: Remove use of GetHandleGravatar Yuri Kunde Schlesner2015-02-02
|
* Thread: Modernize two functions that slipped through previous rebasesGravatar Yuri Kunde Schlesner2015-02-02
|
* Service: Store function names as const char* instead of std::stringGravatar Yuri Kunde Schlesner2015-02-02
| | | | | Uses less memory (strings and function table is stored in constant data) and speeds up start up (no need to allocate and copy strings).
* Service: Clean-up InterfaceGravatar Yuri Kunde Schlesner2015-02-02
|
* Make Port/Service registration and querying more HW-accurateGravatar Yuri Kunde Schlesner2015-02-02
|
* Filesys: Move creation of Handles for File/Directory to service handlersGravatar Yuri Kunde Schlesner2015-02-02
|
* Merge pull request #517 from bunnei/blend-factorsGravatar Tony Wasserka2015-02-01
|\ | | | | Pica: Implement blend factors.
* \ Merge pull request #514 from rohit-n/fix-warningsGravatar bunnei2015-02-01
|\ \ | | | | | | Silence a few warnings.
* \ \ Merge pull request #525 from lioncash/armwarnGravatar bunnei2015-02-01
|\ \ \ | | | | | | | | vfp: Get rid of some compile warnings
| * | | vfp: Get rid of some compile warningsGravatar Lioncash2015-01-31
| | | |
* | | | arm: Clean up ARMul_StateGravatar Lioncash2015-01-31
|/ / / | | | | | | | | | Remove unnecessary/unused struct variables.
* | | arm: Adios armemuGravatar Lioncash2015-01-31
| | |
* | | Merge pull request #512 from lioncash/assignmentGravatar Tony Wasserka2015-01-31
|\ \ \ | | | | | | | | shared_memory: Fix assignments in SharedMemory::Map
| | | * Pica: Implement blend factors.Gravatar bunnei2015-01-31
| |_|/ |/| |
* | | dyncom: clean up arm_dyncom_dec.hGravatar Lioncash2015-01-30
| | |
* | | arm: Move headers over to pragma onceGravatar Lioncash2015-01-30
| | |
* | | arm: Get rid of armcpu.h and skyeye_types.hGravatar Lioncash2015-01-30
| | |
* | | arm: Clean out armos.h and armmmu.hGravatar Lioncash2015-01-30
| | |
* | | Merge pull request #513 from lioncash/cleanupGravatar bunnei2015-01-30
|\ \ \ | | | | | | | | arm: Cleanup.
| | | * Silence a few warnings.Gravatar Rohit Nirmal2015-01-30
| | | |
| * | | arm: Throw out a lot of unnecessary codeGravatar Lioncash2015-01-30
| | | |
| * | | armdefs: Move some defines over to enumsGravatar Lioncash2015-01-30
| | |/ | |/|
| | * shared_memory: Fix assignments in SharedMemory::MapGravatar Lioncash2015-01-30
| |/
* | loader: Add missing printf argumentGravatar Lioncash2015-01-30
| |