summaryrefslogtreecommitdiffstats
path: root/src/core/telemetry_session.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add audio stretching supportfearlessTobi2018-09-081-0/+3
|
* drd: Parse title ID from program metadataZach Hilman2018-09-041-3/+21
|
* core/core: Replace includes with forward declarations where applicableLioncash2018-08-311-0/+1
| | | | | | | | | | | The follow-up to e2457418dae19b889b2ad85255bb95d4cd0e4bff, which replaces most of the includes in the core header with forward declarations. This makes it so that if any of the headers the core header was previously including change, then no one will need to rebuild the bulk of the core, due to core.h being quite a prevalent inclusion. This should make turnaround for changes much faster for developers.
* Merge pull request #840 from FearlessTobi/port-3353bunnei2018-08-221-2/+3
|\ | | | | Port #3353 from Citra: "citra-qt: Add customizable speed limit target "
| * Port #3353 from CitrafearlessTobi2018-08-211-2/+3
| |
* | telemetry_session: Don't allocate std::string instances for program lifetime in GetTelemetryId() and RegenerateTelemetryId()Lioncash2018-08-211-4/+4
| | | | | | | | | | | | Given these functions aren't intended to be used frequently, there's no need to keep the std::string instances allocated for the whole lifetime of the program. It's just a waste of memory.
* | common/telemetry: Migrate core-independent info gathering to commonLioncash2018-08-151-62/+7
|/ | | | | | | | | | | | Previously core itself was the library containing the code to gather common information (build info, CPU info, and OS info), however all of this isn't core-dependent and can be moved to the common code and use the common interfaces. We can then just call those functions from the core instead. This will allow replacing our CPU detection with Xbyak's which has better detection facilities than ours. It also keeps more architecture-dependent code in common instead of core.
* file_util: Use an enum class for GetUserPath()Lioncash2018-07-211-2/+4
| | | | | | | | | | | | | Instead of using an unsigned int as a parameter and expecting a user to always pass in the correct values, we can just convert the enum into an enum class and use that type as the parameter type instead, which makes the interface more type safe. We also get rid of the bookkeeping "NUM_" element in the enum by just using an unordered map. This function is generally low-frequency in terms of calls (and I'd hope so, considering otherwise would mean we're slamming the disk with IO all the time) so I'd consider this acceptable in this case.
* Rename logging macro back to LOG_*James Rowe2018-07-031-3/+3
|
* settings: Add a configuration for use_accurate_framebuffers.bunnei2018-06-271-0/+2
|
* core: Add a configuration setting for use_multi_core.bunnei2018-05-111-0/+2
|
* core: Replace remaining old non-generic logger usages with fmt-capable equivalentsLioncash2018-04-261-3/+3
| | | | | | 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.
* Merge pull request #276 from N00byKing/acctoyuzubunnei2018-04-031-2/+2
|\ | | | | Change Telemetry Names to yuzu and remove links to citra
| * Change Telemetry Names to yuzuN00byKing2018-03-271-2/+2
| |
* | config: Use simplified checkbox (from Citra) for CPU JIT.bunnei2018-03-271-2/+3
|/
* Port citra #3352 to yuzu (#103)River City Ransomware2018-01-201-1/+9
| | | | | | | | | | * Port citra #3352 to yuzu This change allows non x86_64 architectures to compile yuzu by skipping the building of dynarmic * Fixed clang-format errors * fixes more clang-format errors
* Removing unused settings and yuzu rebrandingJames Rowe2018-01-131-9/+0
|
* Remove gpu debugger and get yuzu qt to compileJames Rowe2018-01-131-5/+0
|
* core: Gut out cryptop, since it doesn't compile with C++17.bunnei2018-01-131-3/+0
|
* configuration: Add cpu_core configuration optionMerryMage2018-01-121-1/+2
|
* WebService: Verify username and token (#2930)B3n302017-09-191-0/+12
| | | | | | | | | | * WebService: Verify username and token; Log errors in PostJson * Fixup: added docstrings to the functions * Webservice: Added Icons to the verification, imrpved error detection in cpr, fixup nits * fixup: fmt warning
* web_services: Refactor to remove dependency on Core.bunnei2017-08-261-1/+7
|
* qt: Add an option to view/regenerate telemetry ID.bunnei2017-08-261-3/+16
|
* telemetry_session: Log telemetry ID.bunnei2017-08-261-0/+36
|
* telemetry: Add field for OsPlatform.bunnei2017-08-041-0/+9
|
* telemetry: Add field for BuildName.bunnei2017-08-041-0/+1
|
* telemetry_session: Log BuildDate and ProgramName fields.bunnei2017-08-041-0/+7
|
* telemetry: Log performance, configuration, and system data.bunnei2017-07-181-10/+66
|
* web_service: Add CMake flag to enable.bunnei2017-07-121-2/+8
|
* telemetry_session: Use TelemetryJson to submit real telemetry.bunnei2017-07-121-2/+2
|
* telemetry: Log a few simple data fields throughout core.bunnei2017-05-251-0/+18
|
* core: Keep track of telemetry for the current emulation session.bunnei2017-05-251-0/+24