The TextureView documentation states that it can be used to render
OpenGL content.

In the blog post announcing TextureView, it states:

A TextureView can just as easily be used to embed an OpenGL scene in
your application. As of Android 4.0, eglCreateWindowSurface() can be
used to render into a SurfaceTexture object.

Which seems to imply that to use TextureView instead of GLSurfaceView,
one would have to do all the EGL setup themselves and manage the
EGLContext and the threading (since GLSurfaceView maintains a
GLThread). There doesn't seem to be any sample code in the Android 4.0
SDK that demonstrates how the "TextureView can just as easily be used
to embed an OpenGL scene". TextureView seems to plug in more cleanly
to the Camera preview (setPreviewTexture) and MediaPlayer
(setSurface).

Is it possible to use GLSurfaceView in conjunction with TextureView by
using GLSurfaceView.setEGLWindowSurfaceFactory to make it render to
the TextureView's SurfaceTexture?

Again, it would be nice if there were some sample code.

p.s. Posted on stackoverflow.com as well. Feel free to answer:
http://stackoverflow.com/questions/8231978/how-to-replace-glsurfaceview-with-textureview-in-android-ice-cream-sandwich

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

Reply via email to