[android-developers] Re: Is there a way to detect programmatically GPU?

2012-07-02 Thread F.Stein
Hi, elio. Yes, it's posable, by means of OpenGL interface. :) Use glGetString() with GL_VENDOR to determinate GPU vendor name and GL_RENDERER to determinate GPU name. Just do it as soon as gl context is made as current. Also there is a hidden method, you may see it in GLSurfaceView source ( ht

Re: [android-developers] image format for android games

2012-06-18 Thread F.Stein
realh, This book is old enough to be a carrier of facts. Facts in this book is simply old. There are many devices support 32bit RGBA pixel format. Only old or very-low-end devices can't support RGBA_ pixel format. Use this link

Re: [android-developers] Re: How to stop a native process

2012-05-06 Thread F.Stein
ummm... Indeed, Kris. I thought he need to stop his process on cpp side. If not, Giuseppe, does your native code uses pthread lib? Maybe it will better to understand if you show your native code. воскресенье, 6 мая 2012 г., 1:38:21 UTC+7 пользователь Kristopher Micinski написал: > > bad idea...

[android-developers] Re: How to stop a native process

2012-05-05 Thread F.Stein
Maybe "exit(0)" from "stdlib.h" could help? воскресенье, 6 мая 2012 г., 0:42:26 UTC+7 пользователь Giuseppe написал: > > with the premise that I have NO EXPERIENCE of C language, I would like to > solve a problem that does not allow me to proceed with the publication of > my app. > > I have a na