summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* | | | | | | | Merge pull request #2332 from lioncash/gdbGravatar Yuri Kunde Schlesner2016-12-155-16/+23
|\ \ \ \ \ \ \ \
| * | | | | | | | gdbstub: Remove global variable from public interfaceGravatar Lioncash2016-12-155-16/+23
* | | | | | | | | Merge pull request #2320 from mailwl/cecd-updateGravatar Yuri Kunde Schlesner2016-12-158-13/+81
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | Service/CECD: Add cecd:ndm serviceGravatar mailwl2016-12-158-13/+81
| | |_|_|_|_|/ / / | |/| | | | | | |
* | | | | | | | | Merge pull request #2331 from lioncash/truncGravatar bunnei2016-12-151-1/+2
|\ \ \ \ \ \ \ \ \ | |_|/ / / / / / / |/| | | | | | | |
| * | | | | | | | hid: Get rid of a double -> float truncation warningGravatar Lioncash2016-12-151-1/+2
| | |/ / / / / / | |/| | | | | |
* | | | | | | | Merge pull request #2330 from lioncash/pragmaGravatar Sebastian Valle2016-12-153-0/+6
|\ \ \ \ \ \ \ \
| * | | | | | | | core: Add missing #pragma once directives where applicableGravatar Lioncash2016-12-153-0/+6
| |/ / / / / / /
* / / / / / / / act: Fix docstring typoGravatar Lioncash2016-12-151-1/+1
|/ / / / / / /
* | | | | | | Merge pull request #2325 from yuriks/fix-indexGravatar Yuri Kunde Schlesner2016-12-151-1/+1
|\ \ \ \ \ \ \
| * | | | | | | shader_jit_x64: Use LOOPCOUNT_REG as a 64-bit reg when indexingGravatar Yuri Kunde Schlesner2016-12-151-1/+1
* | | | | | | | Merge pull request #2314 from mailwl/accountGravatar bunnei2016-12-158-10/+44
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | |
| * | | | | | | Service/ACT: move ACT services to folderGravatar mailwl2016-12-148-10/+44
| | |/ / / / / | |/| | | | |
* | | | | | | Memory: Always flush whole pages from surface cacheGravatar Yuri Kunde Schlesner2016-12-141-0/+10
| |/ / / / / |/| | | | |
* | | | | | VideoCore: Eliminate an unnecessary copy in the drawcall loopGravatar Yuri Kunde Schlesner2016-12-143-5/+3
* | | | | | Merge pull request #2309 from yuriks/shader-jit-xbyakGravatar Yuri Kunde Schlesner2016-12-146-224/+462
|\ \ \ \ \ \
| * | | | | | shader_jit_x64: Use Reg32 for LOOP* registers, eliminating castsGravatar Yuri Kunde Schlesner2016-12-141-16/+16
| * | | | | | VideoCore: Convert x64 shader JIT to use Xbyak for assemblyGravatar Yuri Kunde Schlesner2016-12-146-224/+462
| |/ / / / /
* | | | | | Merge pull request #2249 from Subv/sessions_v3Gravatar Yuri Kunde Schlesner2016-12-1425-171/+591
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Fixed the codestyle to match our clang-format rules.Gravatar Subv2016-12-1416-68/+108
| * | | | | Moved the HLE command buffer translation task to ServerSession instead of the...Gravatar Subv2016-12-096-47/+38
| * | | | | Kernel/IPC: Small codestyle cleanupGravatar Subv2016-12-092-3/+1
| * | | | | Added a framework for partially handling Session disconnections.Gravatar Subv2016-12-088-9/+67
| * | | | | Use std::move where appropriate.Gravatar Subv2016-12-0812-177/+187
| * | | | | Return an error code when connecting to a saturated port.Gravatar Subv2016-12-055-7/+20
| * | | | | HLE: Use a member variable instead of a virtual function to retrieve the max ...Gravatar Subv2016-12-055-8/+18
| * | | | | Split SessionRequestHandler::HandleSyncRequest into HandleSyncRequest, Transl...Gravatar Subv2016-12-056-22/+59
| * | | | | Kernel: Remove the Redirection handle type.Gravatar Subv2016-12-051-2/+0
| * | | | | KServerPorts now have an HLE handler "template", which is inherited by all Se...Gravatar Subv2016-12-0512-69/+86
| * | | | | Declare empty ServerSession and ClientSession constructors as default.Gravatar Subv2016-12-022-4/+4
| * | | | | Threads do not wait for the server endpoint to call AcceptSession before retu...Gravatar Subv2016-12-012-3/+5
| * | | | | Fixed the rebase mistakes.Gravatar Subv2016-11-3011-83/+76
| * | | | | A bit of a redesign.Gravatar Subv2016-11-3013-263/+266
| * | | | | IPC/HLE: Associate the ClientSessions with their parent port's HLE interface ...Gravatar Subv2016-11-306-26/+21
| * | | | | Kernel/HLE: Service::Interface no longer inherits from any Kernel object, and...Gravatar Subv2016-11-304-24/+52
| * | | | | fixup! Kernel/IPC: Use Ports and Sessions as the fundamental building block ...Gravatar Subv2016-11-304-5/+6
| * | | | | Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inte...Gravatar Subv2016-11-3016-88/+314
* | | | | | Minor amendment of GSP_GPU::ImportDisplayCaptureInfo codeGravatar JamePeng2016-12-131-3/+5
* | | | | | Merge pull request #2312 from lioncash/guardGravatar Yuri Kunde Schlesner2016-12-121-0/+2
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | |
| * | | | | time_stretch: Add missing #pragma once directiveGravatar Lioncash2016-12-121-0/+2
* | | | | | Merge pull request #2275 from jbeich/pthreadGravatar Sebastian Valle2016-12-111-1/+1
|\ \ \ \ \ \
| * | | | | | tests: add missing libcore dependency after 75ee2f8c6702Gravatar Jan Beich2016-12-071-1/+1
| | |_|_|_|/ | |/| | | |
* | | | | | Merge pull request #2267 from JayFoxRox/fix-mingw-ccGravatar Sebastian Valle2016-12-119-10/+11
|\ \ \ \ \ \
| * | | | | | gdbstub: Remove unused includeGravatar Jannik Vogel2016-12-051-1/+0
| * | | | | | Unify Windows ICON resource nameGravatar Jannik Vogel2016-12-052-2/+2
| * | | | | | Support mingw cross-compileGravatar Jannik Vogel2016-12-059-9/+11
* | | | | | | APT::GetStartupArgument: force clear startup argumentGravatar mailwl2016-12-112-5/+11
* | | | | | | citra-qt: Make constructors explicit where applicableGravatar Lioncash2016-12-1115-32/+35
| |_|/ / / / |/| | | | |
* | | | | | citra-qt: Add missing #pragma once directivesGravatar Lioncash2016-12-115-0/+10
* | | | | | game_list: Make slots private functionsGravatar Lioncash2016-12-111-7/+4