android: How to apply pinch zoom and pan to 2D GLSurfaceView
- by mak_just4anything
I want to apply pinch zoom and panning effect on GLSurfaceView. It is Image editor, so It would not be 3D object. I tried to implement using these following links:
https://groups.google.com/forum/#!topic/android-developers/EVNRDNInVRU
Want to apply pinch and zoom to GLSurfaceView(3d Object)
http://www.learnopengles.com/android-lesson-one-getting-started/
These all are links for 3D object rendering. I can not use ImageView as I need to work out with OpenGL so, had to implement it on GLSurfaceView.
Suggest me or any reference links are there for such implementation.
**I need it for 2D only.