Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using OpenGL from the main thread on Android

I would like to call a GLES20 method when an item from the options menu is selected.

public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
        case R.id.clear:
            GLES20.glClear(GLES20.GL_COLOR_BUFFER_BIT);
            break;
        // ...
    }
}

This does not work since I am in the main thread and not in GLThread. It says:

call to OpenGL ES API with no current context (logged once per thread)

But what do I have to do to get things working?

like image 959
Matthias Avatar asked Mar 08 '11 15:03

Matthias


1 Answers

I found the answer on my own:

public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
        case R.id.clear:
            // GLSurfaceView.queueEvent
            surface.queueEvent(new Runnable() {
                @Override
                public void run() {
                    GLES20.glClear(GLES20.GL_COLOR_BUFFER_BIT);
                }
            });
            break;
        // ...
    }
}
like image 196
Matthias Avatar answered Oct 18 '22 03:10

Matthias