Re: [android-developers] trying to get the opengl-es10 tutorial to work

2011-10-24 Thread Prakash M
Are you seeing a blank screen? Without logs or trace, it is very difficult to analyze issues. Try calling glGetError method after each GL call to know whether any GL error occured or not. sample code for your reference. public static void checkError(GL g, String identifier) { int error; while

[android-developers] trying to get the opengl-es10 tutorial to work

2011-10-21 Thread netskink
Hi, I am doing the opengl-es10 tutorial available here: http://developer.android.com/resources/tutorials/opengl/opengl-es10.html I have done up to the part where the green triangle should appear. Unfortunately it does not. I've put a breakpoint in onSurfaceCreated() routine to make sure its