summaryrefslogtreecommitdiffstats
path: root/src/core/telemetry_session.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* core: settings: Add setting to enable vsync, which is on by default.bunnei2020-02-261-0/+1
|
* settings: Add settings for graphics backendReinUsesLisp2020-01-291-1/+11
|
* telemetry_session: Report renderer backendReinUsesLisp2019-12-021-0/+1
| | | | We only have OpenGL as an option for now. Hardcode the entry.
* telemetry_session: Use temporary to avoid writing the same enumReinUsesLisp2019-12-021-16/+11
|
* yuzu: Remove setting for using UnicornLioncash2019-07-111-1/+0
| | | | | | | | | | The JIT is mature enough that this setting can be removed, falling back to Unicorn only on unsupported architectures. Any missing features from Unicorn (of which there are extremely few), are mostly developer-oriented, which most users don't care about. Features should be coordinated with the JIT, not the interpreter, anyhow.
* yuzu: Remove CPU Jit setting from the UIfearlessTobi2019-07-041-1/+1
| | | | A normal user shouldn't change this, as it will slow down the emulation and can lead to bugs or crashes. The renaming is done in order to prevent users from leaving this on without a way to turn it off from the UI.
* core/telemetry_session: Remove unnecessary web service nulling out in destructorLioncash2019-05-291-2/+1
| | | | | This will automatically occur when the backend instance goes out of scope at the end of the destructor's execution.
* core/telemetry_session: Remove usages of the global system accessorLioncash2019-05-291-28/+32
| | | | | | | | | | | | | | | | Makes the dependency explicit in the TelemetrySession's interface instead of making it a hidden dependency. This also revealed a hidden issue with the way the telemetry session was being initialized. It was attempting to retrieve the app loader and log out title-specific information. However, this isn't always guaranteed to be possible. During the initialization phase, everything is being constructed. It doesn't mean an actual title has been selected. This is what the Load() function is for. This potentially results in dead code paths involving the app loader. Instead, we explicitly add this information when we know the app loader instance is available.
* core/telemetry_session: Only create the backend when we really need itzhupengfei2019-05-041-8/+9
| | | | The backend is not used until we decide to submit the testcase/telemetry, and creating it early prevents users from updating the credentials properly while the games are running.
* settings: Add new graphics setting for use_asynchronous_gpu_emulation.bunnei2019-03-071-0/+2
|
* settings: Hide shader cache behind a settingReinUsesLisp2019-02-071-0/+2
|
* web_service: move telemetry condition from TelemetrySession constructor to destructorfearlessTobi2018-12-081-8/+4
| | | | Fixes an issue where Testcases couldn't be sent when Telemetry was disabled, because both things are tied closely together in the backend.
* compatdb: Use a seperate endpoint for testcase submissionfearlessTobi2018-10-281-0/+9
|
* config: Rename use_accurate_framebuffers -> use_accurate_gpu_emulation.bunnei2018-10-161-2/+2
| | | | - This will be used as a catch-all for slow-but-accurate GPU emulation paths.
* telemetry_session: Add missing includesLioncash2018-10-091-2/+4
| | | | | Prevents potential compilation issues in the future by including missing headers for certain functions and types.
* telemetry_session: Use a std::array in GenerateTelemetryId()Lioncash2018-10-091-2/+4
| | | | | | We don't need to potentially heap-allocate a std::string instance here, given the data is known ahead of time. We can just place it within an array and pass this to the mbedtls functions.
* Address more review commentsfearlessTobi2018-10-021-1/+1
|
* Address a bunch of review commentsfearlessTobi2018-10-021-5/+6
|
* Port web_service from CitrafearlessTobi2018-10-021-12/+39
|
* 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