summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-07-19Core : Fix Conversion Warningszawata
2015-07-19Common : Fix Conversion Warningszawata
2015-07-19Citra_QT : Fix Conversion Warningszawata
2015-07-18Merge pull request #941 from citra-emu/armv6-thumb-movYuri Kunde Schlesner
Dyncom: Support for a new ARMv6 Thumb MOV encoding
2015-07-18Merge pull request #942 from linkmauve/masterTony Wasserka
Remove the unused and commented GetThemeDir prototype from FileUtil
2015-07-18Common: Remove the unused and commented GetThemeDir prototype from FileUtil.Emmanuel Gil Peyrot
2015-07-18Dyncom: Support for a missing ARMv6 Thumb MOV encodingYuri Kunde Schlesner
2015-07-17Merge pull request #938 from Subv/querymemYuri Kunde Schlesner
Kernel/SVC: Implemented svcQueryMemory.
2015-07-17Kernel/SVC: Implemented svcQueryMemory.Subv
2015-07-17Merge pull request #937 from yuriks/codeset-leakbunnei
Ensure all kernel objects are released during shutdown
2015-07-17Ensure all kernel objects are released during shutdownYuri Kunde Schlesner
This commit fixes several kernel object leaks. The most severe of them was threads not being removed from the private handle table used for CoreTiming events. This resulted in Threads never being released, which in turn held references to Process, causing CodeSets to never be freed when loading other applications.
2015-07-16Merge pull request #936 from archshift/kill-sourceforgearchshift
Update homebrew before building, which no longer uses SourceForge
2015-07-16Update homebrew before building, which no longer uses SourceForgearchshift
2015-07-16Merge pull request #935 from lioncash/smlawYuri Kunde Schlesner
arm_dyncom_interpreter: Simplify assignment in SMLAW
2015-07-16arm_dyncom_interpreter: Simplify assignment in SMLAWLioncash
Also a side-benefit of not having implementation-defined behavior.
2015-07-16Remove webchat link from readmeYuri Kunde Schlesner
Hopefully this should reduce the amount of drive-by spam and annoying support requests in the channel.
2015-07-16Merge pull request #918 from yuriks/romfsbunnei
Do not load entire RomFS to memory, read from the file as needed instead (rebased)
2015-07-15Merge pull request #931 from neobrain/move_default_attr_handlerTony Wasserka
Pica/CommandProcessor: Move default attribute setup to the proper position.
2015-07-15Pica/CommandProcessor: Move default attribute setup to the proper position.Tony Wasserka
2015-07-15Merge pull request #932 from neobrain/proper_triangle_countTony Wasserka
Pica/Clipper: Output proper number of triangles in debugging logs.
2015-07-15Pica/Clipper: Output proper number of triangles in debugging logs.Tony Wasserka
2015-07-14Merge pull request #928 from JSFernandes/masterTony Wasserka
Fix permissions in pre-commit hook.
2015-07-14Merge pull request #767 from Lectem/DOT3_RGBYuri Kunde Schlesner
2015-07-14VideoCore: Implement the DOT3_RGB combinerLectem
2015-07-13Merge pull request #904 from aroulin/y2r-narrowing-warningarchshift
Y2R: Fix narrowing warning
2015-07-13Fix uploading of builds by adding exec bit to .travis-upload.sharchshift
Fixes regression introduced by 6fc605a
2015-07-13Loader: Fix variable type and remove unused variableYuri Kunde Schlesner
2015-07-13Archive: Correct a few incorrect types in function signaturesYuri Kunde Schlesner
Buffer lengths should be size_t, and file offsets should be u64.
2015-07-14Fix permissions in pre-commit hookJSFernandes
2015-07-13Loader: Remove unnecessary pointer indirection to IOFileYuri Kunde Schlesner
2015-07-13FS: Stream RomFS from file instead of loading all of it to memorycondut
2015-07-14Merge pull request #927 from yuriks/getopt-fixTony Wasserka
getopt: Fix compilation settings.
2015-07-13getopt: Fix macro redefinition warningYuri Kunde Schlesner
We already define _CRT_SECURE_NO_WARNINGS
2015-07-13getopt: Fix compilation settingsYuri Kunde Schlesner
INTERFACE doesn't define the symbol when compiling the library itself. PUBLIC should be used when the definition is needed both by the library and by the users.
2015-07-13Merge pull request #924 from aroulin/qt-disassembly-stepYuri Kunde Schlesner
Qt: Fix disassembly widget stepping
2015-07-13Merge pull request #793 from neobrain/stencilTony Wasserka
Pica: Implement stencil testing.
2015-07-13Pica: Implement stencil testing.Tony Wasserka
2015-07-13citra-qt: Add depth formats to framebuffer viewing widget.Tony Wasserka
2015-07-13citra-qt: Properly specify the framebuffer format.Tony Wasserka
2015-07-13Merge pull request #702 from neobrain/citraceTony Wasserka
Add CiTrace recording support.
2015-07-13CiTrace: Clean up initialization method.Tony Wasserka
2015-07-13CiTrace: Record LCD registers. Cleanup recording code.Tony Wasserka
2015-07-13CiTrace: Record default vertex attributes.Tony Wasserka
2015-07-13Clean up command_processor.cpp.Tony Wasserka
2015-07-13citra-qt: Properly disable the CiTrace widget upon starting/stopping emulation.Tony Wasserka
2015-07-13Add CiTrace recording support.Tony Wasserka
This is exposed in the GUI as a new "CiTrace Recording" widget. Playback is implemented by a standalone 3DS homebrew application (which only runs reliably within Citra currently; on an actual 3DS it will often crash still).
2015-07-13GPU: Be robust against nullptr addresses; properly reset busy bits in the ↵Tony Wasserka
trigger registers.
2015-07-13FileUtil: Add a WriteObject method for writing a single, POD-type object.Tony Wasserka
2015-07-13HW: Fix a stupid issue which led to unknown register reads/writes.Tony Wasserka
2015-07-13Qt: Fix disassembly widget steppingaroulin