I searched the web, including developer.android.com . I read this post: how to request device information for an Android device . I know System.getProperties ().
My question is: is there a way to programmatically detect specific GPU information on a specific Android device? Is it possible to at least get the make and model of the GPU on the device?
Or, do I need to use the MANUFACTURER and MODEL fields of the Build class to output the GPU that is used on this device?
My goals regarding this issue are to find a way to identify graphics processing capabilities for the devices that my applications run on, so that I can adjust the graphics processing requirements for my applications accordingly.
Thank you, Chris
source
share