Is there any way to get GPU information?

Rotary Heart picture Rotary Heart · Apr 4, 2013 · Viewed 20.1k times · Source

I know how to get CPU info inside /proc/, but is there any way to get GPU info? Something like the CPU one?

Answer

Buda Gavril picture Buda Gavril · Apr 4, 2013

There is, you can get GPU information by using OpenGL:

    Log.d("GL", "GL_RENDERER = "   + gl.glGetString( GL10.GL_RENDERER   ));
    Log.d("GL", "GL_VENDOR = "     + gl.glGetString( GL10.GL_VENDOR     ));
    Log.d("GL", "GL_VERSION = "    + gl.glGetString( GL10.GL_VERSION    ));
    Log.i("GL", "GL_EXTENSIONS = " + gl.glGetString( GL10.GL_EXTENSIONS ));

For more information see: https://developer.android.com/guide/topics/graphics/opengl.html