Add actionable graphics and performance diagnostics - #301
Draft
4Luke4 wants to merge 3 commits into
Draft
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add a reproducible diagnostics workflow for graphics, performance, audio, storage, and device-specific support reports.
This change intentionally does not claim to enable Turnip or generic guest GPU acceleration. Instead, it establishes the information and terminology required to implement and validate those features safely across different Android GPU stacks.
Changes
scripts/localdesktop-support-report.sh, a read-only guest utility that collects:Rationale
The related issues currently combine several independent concerns and use "GPU acceleration" to describe two separate layers:
The host compositor already requests hardware-accelerated EGL/GLES contexts. That does not automatically expose Android GPU drivers to guest applications. Installing Mesa or
vulkan-toolsalone therefore cannot provide reliable Turnip acceleration.A safe Turnip implementation requires Qualcomm/Adreno detection, access to
/dev/kgsl-3d0, compatible Android Vulkan userspace components, a matching Mesa/Turnip build, correct guest loader/ICD configuration, and a tested software fallback. The diagnostics introduced here make those requirements observable instead of inferred.User and developer impact
Validation
sh -n;main;Scope and follow-up
This PR is deliberately diagnostic and documentation-focused. It does not close the hardware-acceleration requests. A follow-up implementation should be experimental and device-gated, with validation on representative Adreno hardware before being enabled by default.
Refs #50
Refs #105
Refs #262