summaryrefslogtreecommitdiffstats
path: root/src/yuzu_tester/yuzu.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* yuzu: Remove gdbstub configurationFearlessTobi2020-12-191-1/+0
| | | | | The gdbstub itself was removed with https://github.com/yuzu-emu/yuzu/pull/5028. This PR just removes the remaining gdb configuration code from the emulator and the UI.
* core: Eliminate remaining usages of the global system instanceLioncash2020-11-271-3/+4
| | | | | | Removes all remaining usages of the global system instance. After this, migration can begin to migrate to being constructed and managed entirely by the various frontends.
* service: Eliminate usages of the global system instanceLioncash2020-11-271-1/+2
| | | | | Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
* core: Make use of [[nodiscard]] with the System classLioncash2020-11-181-2/+2
| | | | | Given this is a central class, we should flag cases where the return value of some functions not being used is likely a bug.
* video_core: Remove all Core::System references in rendererReinUsesLisp2020-09-061-1/+0
| | | | | | | | | Now that the GPU is initialized when video backends are initialized, it's no longer needed to query components once the game is running: it can be done when yuzu is booting. This allows us to pass components between constructors and in the process remove all Core::System references in the video backend.
* common/telemetry: Migrate namespace into the Common namespaceLioncash2020-08-181-1/+2
| | | | | Migrates the Telemetry namespace into the Common namespace to make the code consistent with the rest of our common code.
* common/fileutil: Convert namespace to Common::FSLioncash2020-08-161-2/+2
| | | | | | | | | | | | Migrates a remaining common file over to the Common namespace, making it consistent with the rest of common files. This also allows for high-traffic FS related code to alias the filesystem function namespace as namespace FS = Common::FS; for more concise typing.
* General: Setup yuzu threads' microprofile, naming and registry.Fernando Sahmkow2020-06-271-2/+4
|
* YuzuCMD/Tester: Correct executionFernando Sahmkow2020-06-271-3/+4
|
* General: Recover Prometheus project from harddrive failure Fernando Sahmkow2020-06-271-1/+1
| | | | | | | This commit: Implements CPU Interrupts, Replaces Cycle Timing for Host Timing, Reworks the Kernel's Scheduler, Introduce Idle State and Suspended State, Recreates the bootmanager, Initializes Multicore system.
* Address review and fix broken yuzu-tester buildJames Rowe2020-03-261-5/+1
|
* configure_debug: Move reporting option to loggingZach Hilman2019-09-221-1/+3
|
* yuzu-tester/yuzu: Correct format stringLioncash2019-07-301-1/+1
| | | | Prevents an invalid formatting exception from being thrown.
* yuzu-tester/yuzu: Remove unused variableLioncash2019-07-301-1/+0
| | | | Gets rid of a compilation warning.
* yuzutest: Add minor commentsZach Hilman2019-06-101-7/+8
|
* yuzu_tester: Display results in table formatZach Hilman2019-06-101-10/+44
|
* yuzutest: Support multiple tests per executableZach Hilman2019-06-101-1/+1
|
* yuzu_tester: Use config, icon, and main from yuzu-cmdZach Hilman2019-06-101-0/+232