Hi at all,

when I try to use the function glGenFramebuffersOES I meet an
UnsupportedOperationException, I am working with android 2.1 update 1
under a Samsung galaxy S.

These  function aren't supported on these platform or I am wrong
somethings?

This is my code (very simple):

public void onDrawFrame(GL10 gl10) {

                GL11 gl= (GL11) gl10;

                if(first_step == false){
                        // distruggo
                        GLES11Ext.glDeleteFramebuffersOES(1, viewFramebuffer);
                        GLES11Ext.glDeleteRenderbuffersOES(1, viewRenderbuffer);
                }
                 // creo
                GLES11Ext.glGenFramebuffersOES(1,viewFramebuffer);
                [...........other stuff.....]
}

Thanks a lot.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to