summaryrefslogtreecommitdiffstats
path: root/src/core/tracer (follow)
Commit message (Collapse)AuthorAgeFilesLines
* core: Remove unused CiTrace source filesLioncash2019-06-183-395/+0
| | | | | | | | | | These source files have been unused for the entire lifecycle of the project. They're a hold-over from Citra and only add to the build time of the project, so they can be removed. There's also likely no way this would ever work in yuzu in its current form without revamping quite a bit of it, given how different the GPU on the Switch is compared to the 3DS.
* Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi2018-09-151-1/+1
|
* core: Make converting constructors explicit where applicableLioncash2018-07-241-1/+1
| | | | | Avoids unwanted implicit conversions. Thankfully, given the large amount of cleanup in past PRs, only this tiny amount is left over to cover.
* Rename logging macro back to LOG_*James Rowe2018-07-031-1/+1
|
* core: Replace remaining old non-generic logger usages with fmt-capable equivalentsLioncash2018-04-261-1/+1
| | | | | | LOG_GENERIC usages will be amended in a follow-up to keep API changes separate from interface changes, as it will require removing a parameter from the relevant function in the VMManager class.
* Format: Run the new clang format on everythingJames Rowe2018-01-213-6/+6
|
* Core: Fix some out-of-style includesYuri Kunde Schlesner2017-05-282-2/+2
|
* Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner2016-09-211-1/+1
|
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-212-7/+2
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner2016-09-192-3/+7
|
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-183-68/+86
|
* fixup simple type conversions where possibleAlexander Laties2016-05-071-12/+12
|
* VideoCore: Run include-what-you-use and fix most includes.Emmanuel Gil Peyrot2016-04-301-0/+1
|
* fix some xcode 7.0 warningsMartin Lindhe2015-09-291-3/+3
|
* General: Fix up doxygen commentsLioncash2015-09-101-2/+1
|
* ARM Core, Video Core, CitraQt, Citrace: Use CommonTypes types instead of the standard u?int*_t types.Emmanuel Gil Peyrot2015-08-111-35/+35
|
* CiTrace: Clean up initialization method.Tony Wasserka2015-07-132-70/+46
|
* CiTrace: Record default vertex attributes.Tony Wasserka2015-07-133-42/+56
|
* Add CiTrace recording support.Tony Wasserka2015-07-133-0/+388
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).