summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #2226 from lioncash/privateGravatar bunnei2019-03-134-14/+36
|\
| * kernel/server_port: Make data members privateGravatar Lioncash2019-03-114-14/+36
* | Merge pull request #2223 from lioncash/errorGravatar bunnei2019-03-133-19/+5
|\ \
| * | core/hle/result: Remove now-unnecessary manually defined copy assignment oper...Gravatar Lioncash2019-03-101-5/+0
| * | core/hle/result: Amend error in comment description for ResultCodeGravatar Lioncash2019-03-101-1/+1
| * | core/hle/result: Remove now-unused constructor for ResultCodeGravatar Lioncash2019-03-101-10/+0
| * | core/hle/result: Relocate IPC error code to ipc_helpersGravatar Lioncash2019-03-103-3/+4
| |/
* | Merge pull request #2166 from lioncash/vi-init-serviceGravatar bunnei2019-03-139-40/+146
|\ \
| * | service/vi: Unstub GetDisplayServiceGravatar Lioncash2019-02-265-11/+49
| * | core/ipc_helper: Allow popping all signed value types with RequestParserGravatar Lioncash2019-02-261-0/+15
| * | service/vi: Remove use of a module classGravatar Lioncash2019-02-268-46/+99
* | | Merge pull request #2211 from lioncash/arbiterGravatar bunnei2019-03-128-64/+80
|\ \ \
| * | | kernel: Make the address arbiter instance per-processGravatar Lioncash2019-03-077-27/+34
| * | | kernel/svc: Move address arbiter signaling behind a unified API functionGravatar Lioncash2019-03-073-22/+26
| * | | kernel/svc: Move address arbiter waiting behind a unified API functionGravatar Lioncash2019-03-073-19/+24
* | | | service/service: Remove unncessary calls to c_str()Gravatar Lioncash2019-03-101-4/+3
| |_|/ |/| |
* | | Merge pull request #2207 from lioncash/hwopusGravatar bunnei2019-03-101-69/+107
|\ \ \
| * | | service/audio/hwopus: Move decoder state to its own classGravatar Lioncash2019-03-071-50/+85
| * | | service/audio/hwopus: Provide a name for the second word of OpusPacketHeaderGravatar Lioncash2019-03-071-2/+4
| * | | service/audio/hwopus: Move Opus packet header out of the IHardwareOpusDecoder...Gravatar Lioncash2019-03-071-17/+17
| * | | service/audio/hwopus: Enclose internals in an anonymous namespaceGravatar Lioncash2019-03-071-2/+3
* | | | Merge pull request #2193 from lioncash/globalGravatar bunnei2019-03-105-17/+23
|\ \ \ \
| * | | | kernel/scheduler: Pass in system instance in constructorGravatar Lioncash2019-03-045-17/+23
* | | | | clang fixGravatar Hexagon122019-03-091-1/+2
* | | | | Log 2 new setting valuesGravatar Hexagon122019-03-091-0/+2
* | | | | Merge pull request #2210 from lioncash/optionalGravatar bunnei2019-03-084-47/+47
|\ \ \ \ \
| * | | | | kernel/hle_ipc: Convert std::shared_ptr IPC header instances to std::optionalGravatar Lioncash2019-03-074-47/+47
| | |_|/ / | |/| | |
* | | | | Merge pull request #2195 from lioncash/shared-globalGravatar bunnei2019-03-071-3/+2
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | kernel/shared_memory: Get rid of the use of global accessor functions within ...Gravatar Lioncash2019-03-041-3/+2
| |/ / /
* | | | Merge pull request #2202 from lioncash/port-privGravatar bunnei2019-03-076-36/+78
|\ \ \ \
| * | | | kernel/server_session: Make data members privateGravatar Lioncash2019-03-055-32/+73
| * | | | kernel/client_session: Make data members privateGravatar Lioncash2019-03-051-4/+5
* | | | | Merge pull request #2206 from lioncash/audio-stopGravatar bunnei2019-03-071-1/+3
|\ \ \ \ \
| * | | | | service/audio/audout_u: Only actually stop the audio stream in StopAudioOut i...Gravatar Lioncash2019-03-071-1/+3
| | |_|/ / | |/| | |
* | | | | Merge pull request #2055 from bunnei/gpu-threadGravatar bunnei2019-03-078-22/+22
|\ \ \ \ \
| * | | | | gpu: Refactor a/synchronous implementations into their own classes.Gravatar bunnei2019-03-061-2/+7
| * | | | | gpu: Move command processing to another thread.Gravatar bunnei2019-03-062-5/+5
| * | | | | gpu: Refactor command and swap buffers interface for asynch.Gravatar bunnei2019-03-063-14/+4
| * | | | | gpu: Refactor to take RendererBase instead of RasterizerInterface.Gravatar bunnei2019-03-061-1/+1
| * | | | | settings: Add new graphics setting for use_asynchronous_gpu_emulation.Gravatar bunnei2019-03-062-0/+3
| * | | | | core: Set is_powered_on before GPU is initialized.Gravatar bunnei2019-03-061-1/+3
| |/ / / /
* | | | | Merge pull request #2197 from lioncash/includeGravatar bunnei2019-03-066-8/+12
|\ \ \ \ \
| * | | | | core/hle/ipc: Remove unnecessary includesGravatar Lioncash2019-03-056-8/+12
| | |/ / / | |/| | |
* | | | | Merge pull request #2190 from lioncash/ogl-globalGravatar bunnei2019-03-062-11/+7
|\ \ \ \ \ | |_|/ / / |/| | | |
| * | | | core/core: Remove the global telemetry accessor functionGravatar Lioncash2019-03-041-4/+0
| * | | | core/core: Replace direct usage of the global system telemetry accessor from ...Gravatar Lioncash2019-03-041-7/+7
| | |/ / | |/| |
* | | | Merge pull request #2199 from lioncash/arbiterGravatar bunnei2019-03-066-112/+184
|\ \ \ \
| * | | | kernel/address_arbiter: Pass in system instance to constructorGravatar Lioncash2019-03-055-23/+42
| * | | | kernel/address_arbiter: Minor tidying upGravatar Lioncash2019-03-051-18/+18
| * | | | kernel/address_arbiter: Convert the address arbiter into a classGravatar Lioncash2019-03-055-82/+135
| | |/ / | |/| |