summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Merge pull request #2912 from FernandoS27/async-fixesGravatar bunnei2019-10-166-28/+29
|\ \ \ | | | | | | | | General fixes to Async GPU
| * | | NvFlinger: Remove leftover from corrections and clang format.Gravatar Fernando Sahmkow2019-10-041-4/+0
| | | |
| * | | Core: Wait for GPU to be idle before shutting down.Gravatar Fernando Sahmkow2019-10-041-0/+2
| | | |
| * | | Nvdrv: Correct Event setup in NvdrvGravatar Fernando Sahmkow2019-10-042-23/+14
| | | | | | | | | | | | | | | | Events are supposed to be cleared on quering. This fixes that issue.
| * | | NVFlinger: Reverse the change that only signaled events on buffer acquire.Gravatar Fernando Sahmkow2019-10-042-20/+1
| | | | | | | | | | | | | | | | | | | | This has been hardware tested and it seems that NVFlinger will still signal even if there are no buffers to present.
| * | | Nvdrv: Do framelimiting only in the CPU ThreadGravatar Fernando Sahmkow2019-10-041-0/+4
| | | |
| * | | NvFlinger: Don't swap buffers if a frame is missing and always trigger event ↵Gravatar Fernando Sahmkow2019-10-041-1/+3
| | | | | | | | | | | | | | | | in sync gpu.
| * | | GPU_Async: Correct fences, display events and more.Gravatar Fernando Sahmkow2019-10-042-2/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit uses guest fences on vSync event instead of an articial fake fence we had. It also corrects to keep signaling display events while loading the game as the OS is suppose to send buffers to vSync during that time.
| * | | Nvdrv: Correct Async regression and avoid signaling empty buffer vsyncsGravatar Fernando Sahmkow2019-10-042-3/+9
| | | |
* | | | Merge pull request #2972 from lioncash/systemGravatar bunnei2019-10-159-33/+63
|\ \ \ \ | |_|/ / |/| | | {bcat, gpu, nvflinger}: Remove trivial usages of the global system accessor
| * | | bcat: Remove use of global system accessorsGravatar Lioncash2019-10-156-29/+55
| | | | | | | | | | | | | | | | | | | | Removes all uses of the global system accessor within the BCAT interface.
| * | | nvflinger/buffer_queue: Remove use of a global system accessorGravatar Lioncash2019-10-123-4/+8
| | | |
* | | | Merge pull request #2965 from FernandoS27/fair-core-timingGravatar bunnei2019-10-156-38/+94
|\ \ \ \ | | | | | | | | | | Core Timing: Rework Core Timing to run all cores evenly.
| * | | | Core_Timing: Address Remaining feedback.Gravatar Fernando Sahmkow2019-10-121-5/+4
| | | | |
| * | | | Core_Timing: Address Feedback and suppress warnings.Gravatar Fernando Sahmkow2019-10-115-13/+12
| | | | |
| * | | | Core Timing: Correct Idle and remove lefting pragmaGravatar Fernando Sahmkow2019-10-091-2/+1
| | | | |
| * | | | Core Timing: General corrections and added tests.Gravatar Fernando Sahmkow2019-10-092-4/+12
| | | | |
| * | | | Core Timing: Rework Core Timing to run all cores evenly.Gravatar Fernando Sahmkow2019-10-096-38/+89
| |/ / /
* | | | Merge pull request #2897 from DarkLordZach/oss-ext-fonts-1Gravatar bunnei2019-10-1418-123/+73480
|\ \ \ \ | | | | | | | | | | pl_u: Move open source font archives and fix NAND error
| * | | | pl_u: Fix mismatched rebase size error in font encryptionGravatar Zach Hilman2019-10-133-19/+17
| | | | |
| * | | | pl_u: Use kernel physical memoryGravatar Zach Hilman2019-10-132-4/+8
| | | | |
| * | | | pl_u: Remove excess static qualifierGravatar Zach Hilman2019-10-131-1/+1
| | | | |
| * | | | pl_u: Use OSS system archives if real archives don't existGravatar Zach Hilman2019-10-132-112/+48
| | | | |
| * | | | system_archive: Synthesize shared fonts system archivesGravatar Zach Hilman2019-10-133-5/+101
| | | | |
| * | | | externals: Move OSS font data to file_sys in coreGravatar Zach Hilman2019-10-1313-1/+73324
| |/ / /
* | | | Merge pull request #2930 from DarkLordZach/gamecard-partitionsGravatar bunnei2019-10-144-26/+128
|\ \ \ \ | |/ / / |/| | | file_sys: Add code to access raw gamecard partitions and lazily load them
| * | | card_image: Implement system update commands in XCIGravatar Zach Hilman2019-10-132-3/+37
| | | |
| * | | card_image: Add accessors for raw partitions in XCIGravatar Zach Hilman2019-09-222-0/+36
| | | |
| * | | card_image: Lazily load partitions in XCIGravatar Zach Hilman2019-09-222-26/+41
| | | |
| * | | pfs: Provide accessors for file sizes and offsetsGravatar Zach Hilman2019-09-222-0/+17
| | | |
* | | | Merge pull request #2921 from FreddyFunk/compiler-warnings-coreGravatar bunnei2019-10-091-6/+6
|\ \ \ \ | | | | | | | | | | Services::ES fix casting warnings
| * | | | Services::ES fix casting warningsGravatar FreddyFunk2019-09-291-6/+6
| |/ / /
* | | | Merge pull request #2654 from DarkLordZach/lm-log-rewriteGravatar bunnei2019-10-0810-159/+367
|\ \ \ \ | | | | | | | | | | lm: Rewrite logger to use core reporting services
| * | | | lm: Flush manager output on core shutdownGravatar Zach Hilman2019-09-225-11/+15
| | | | |
| * | | | lm: Rename Initialize to Log and implement with manager/reporterGravatar Zach Hilman2019-09-221-140/+22
| | | | | | | | | | | | | | | Allows saving and clearer output of data.
| * | | | lm: Implement manager class to output to reporterGravatar Zach Hilman2019-09-222-0/+233
| | | | |
| * | | | core: Add LM::Manager to systemGravatar Zach Hilman2019-09-226-19/+39
| | | | | | | | | | | | | | | Allows centralized control over logging mechanisms.
| * | | | reporter: Add log output for packaged lm log dataGravatar Zach Hilman2019-09-222-0/+69
| |/ / / | | | | | | | | Takes the vector from head to tail of log data and saves it.
* | | / hid: Implement DeactivateNpadGravatar Morph2019-10-072-1/+13
| |_|/ |/| | | | | | | | Makes use of the already existing DeactivateController function.
* | | Merge pull request #2951 from lioncash/globalGravatar Zach Hilman2019-10-0618-65/+87
|\ \ \ | | | | | | | | core: Remove Core::CurrentProcess()
| * | | core/core: Remove unused headerGravatar Lioncash2019-10-061-1/+0
| | | | | | | | | | | | | | | | This isn't used anywhere in either the cpp or header file.
| * | | core: Remove Core::CurrentProcess()Gravatar Lioncash2019-10-065-13/+11
| | | | | | | | | | | | | | | | | | | | | | | | This only encourages the use of the global system instance (which will be phased out long-term). Instead, we use the direct system function call directly to remove the appealing but discouraged short-hand.
| * | | hle/service: Replace global system instance calls with instance-based onesGravatar Lioncash2019-10-0614-51/+76
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Migrates the HLE service code off the use of directly accessing the global system instance where trivially able to do so. This removes all usages of Core::CurrentProcess from the service code, only 8 occurrences of this function exist elsewhere. There's still quite a bit of "System::GetInstance()" being used, however this was able to replace a few instances.
* | | | bcat/module: Silence truncation warningsGravatar Lioncash2019-10-061-3/+3
| | | | | | | | | | | | | | | | | | | | We need to perform explicit casts here, otherwise we're implicitly truncating a 64-bit type to a 32-bit one.
* | | | bcat: Take std::function instance by value in NullBackend's constructorGravatar Lioncash2019-10-062-2/+2
| | | | | | | | | | | | | | | | | | | | Without this, the std::move within the constructor initializer list won't be able to actually perform a move.
* | | | bcat: In-class initialize ProgressServiceBackend's impl memberGravatar Lioncash2019-10-062-2/+2
| | | | | | | | | | | | | | | | Allows us to remove a constructor initializer list.
* | | | bcat: Make ProgressServiceBackend's constructor take a std::string_viewGravatar Lioncash2019-10-062-3/+7
| | | | | | | | | | | | | | | | | | | | Given the string is appended to another, we can make it a view so a redundant full copy of the string isn't made.
* | | | bcat: Make ProgressServiceBackend's GetEvent() constGravatar Lioncash2019-10-062-2/+2
| | | | | | | | | | | | | | | | | | | | This member function doesn't modify internal member state, so it can be marked const.
* | | | boxcat: Silence an unused variable warningGravatar Lioncash2019-10-061-1/+2
|/ / / | | | | | | | | | | | | | | | On parse errors, we can log out the explanatory string indicating what the parsing error was, rather than just ignoring the variable and returning an overly broad error code.
* | | audio/audout_u: Change formatting for old clang-format versionsGravatar ReinUsesLisp2019-10-041-1/+1
| | |