OpenGL
satya - Tuesday, December 23, 2008 4:05:35 PM
OpenGL
OpenGL
Search Android Developers Group for: OpenGL
Search Android Beginers Group for: OpenGL
satya - Tuesday, December 23, 2008 4:12:22 PM
What is OpenGL/ES?
Android includes support for 3D hardware acceleration. This functionality is accessed via the OpenGL API ? specifically, the OpenGL ES API.
OpenGL ES is a flavor of the OpenGL specification intended for embedded devices. Versions of OpenGL ES are loosely peered to versions of the primary OpenGL standard. Android currently supports OpenGL ES 1.0, which corresponds to OpenGL 1.3. So, if the application you have in mind is possible with OpenGL 1.3 on a desktop system, it should be possible on Android.
The specific API provided by Android is similar to the J2ME JSR239 OpenGL ES API. However, it may not be identical, so watch out for deviations.
satya - Tuesday, December 23, 2008 4:15:31 PM
The homepage for the opengles khronos.org
satya - Tuesday, December 23, 2008 4:33:09 PM
Book: Mobile 3D Graphics with OpenGL ES and M3G
Book: Mobile 3D Graphics with OpenGL ES and M3G
satya - Tuesday, December 23, 2008 4:40:44 PM
OpenGL ES documentation/tutorial suggestions: A thread
satya - Wednesday, December 24, 2008 1:53:54 PM
Android OpenGL code
Android OpenGL code
Search Google for: Android OpenGL code
Search Android Developers Group for: Android OpenGL code
Search Android Beginers Group for: Android OpenGL code
satya - Wednesday, December 24, 2008 1:56:02 PM
SurfaceView
SurfaceView
Search Google for: SurfaceView
Search Android Developers Group for: SurfaceView
Search Android Beginers Group for: SurfaceView
satya - Wednesday, December 24, 2008 1:56:14 PM
SurfaceView OpenGL
SurfaceView OpenGL
Search Google for: SurfaceView OpenGL
Search Android Developers Group for: SurfaceView OpenGL
Search Android Beginers Group for: SurfaceView OpenGL
satya - Monday, January 12, 2009 6:05:18 PM
Divide and conquer game source
satya - Monday, January 12, 2009 6:22:49 PM
khronos opengl es documentation
khronos opengl es documentation
satya - Monday, January 12, 2009 6:25:41 PM
Javadocs for Java me of opengl es
satya - Tuesday, January 13, 2009 9:07:44 AM
Sequence of methods to get a contexxt
eglGetDisplay
eglInitialize
eglChooseConfig
eglCreateContext
satya - Tuesday, January 13, 2009 9:12:25 AM
Android configSpec EGL_NONE
Android configSpec EGL_NONE
Search Google for: Android configSpec EGL_NONE
Search Android Developers Group for: Android configSpec EGL_NONE
Search Android Beginers Group for: Android configSpec EGL_NONE
Search Google Code for: Android configSpec EGL_NONE
Search Android Issues Database for: Android configSpec EGL_NONE
satya - Tuesday, January 13, 2009 9:22:25 AM
SurfaceView OpenGL android
SurfaceView OpenGL android
Search Google for: SurfaceView OpenGL android
Search Android Developers Group for: SurfaceView OpenGL android
Search Android Beginers Group for: SurfaceView OpenGL android
Search Google Code for: SurfaceView OpenGL android
Search Android Issues Database for: SurfaceView OpenGL android
satya - Tuesday, January 13, 2009 12:47:24 PM
Whati is color depth in OpenGL?
Whati is color depth in OpenGL?
satya - Tuesday, January 13, 2009 12:47:38 PM
What is depth buffer in OpenGL?
What is depth buffer in OpenGL?
satya - Tuesday, January 13, 2009 12:48:11 PM
What is dither in OpenGL
What is dither in OpenGL
satya - Tuesday, January 13, 2009 12:49:03 PM
What are OpenGL textures
What are OpenGL textures
satya - Tuesday, January 13, 2009 2:31:04 PM
winding shading culling opengl
winding shading culling opengl
satya - Tuesday, January 13, 2009 4:10:51 PM
what are opengl normals
what are opengl normals
satya - Tuesday, January 13, 2009 4:11:31 PM
glDrawElements indices
glDrawElements indices
satya - Tuesday, January 13, 2009 4:13:33 PM
opengl redbook
opengl redbook
satya - Tuesday, January 13, 2009 4:34:19 PM
what are texture coordinates in opengl
what are texture coordinates in opengl
satya - Tuesday, January 13, 2009 10:50:12 PM
eglCreateWindowSurface
eglCreateWindowSurface
satya - Tuesday, January 13, 2009 10:52:14 PM
android.view.SurfaceHolder
android.view.SurfaceHolder
Search Google for: android.view.SurfaceHolder
Search Android Developers Group for: android.view.SurfaceHolder
Search Android Beginers Group for: android.view.SurfaceHolder
Search Google Code for: android.view.SurfaceHolder
Search Android Issues Database for: android.view.SurfaceHolder
satya - Tuesday, January 13, 2009 10:55:36 PM
eglCreateWindowSurface
eglCreateWindowSurface
Search Google for: eglCreateWindowSurface
Search Android Developers Group for: eglCreateWindowSurface
Search Android Beginers Group for: eglCreateWindowSurface
satya - Thursday, January 15, 2009 11:27:59 PM
OpenGL fixed function hardware
OpenGL fixed function hardware
satya - Thursday, January 15, 2009 11:37:44 PM
Read this interview on fixed function GPUs
satya - Saturday, January 17, 2009 2:57:39 PM
javax.microedition opengl es
satya - Monday, January 19, 2009 11:22:12 AM
javax.microedition.m3g
satya - Monday, January 19, 2009 12:00:03 PM
another resource for opengl learning
satya - Monday, January 19, 2009 1:42:30 PM
How to use EGL to get OpenGL Context
satya - Monday, January 19, 2009 2:06:02 PM
khronos OpenGL ES EGL api documentation
satya - Tuesday, January 20, 2009 9:12:22 PM
colors
glColor3f(0.0, 0.0, 0.0); black
glColor3f(1.0, 0.0, 0.0); red
glColor3f(0.0, 1.0, 0.0); green
glColor3f(1.0, 1.0, 0.0); yellow
glColor3f(0.0, 0.0, 1.0); blue
glColor3f(1.0, 0.0, 1.0); magenta
glColor3f(0.0, 1.0, 1.0); cyan
glColor3f(1.0, 1.0, 1.0); white
satya - Tuesday, January 20, 2009 9:13:15 PM
color sequence
set_current_color(red);
draw_object(A);
draw_object(B);
set_current_color(green);
set_current_color(blue);
draw_object(C);
satya - Tuesday, January 20, 2009 9:14:33 PM
The default value of blend or alpha is 0
The default value of blend or alpha is 0
satya - Tuesday, January 20, 2009 9:16:46 PM
glflush and glfinish
glflush and glfinish
satya - Tuesday, January 20, 2009 9:59:59 PM
See if this tutorial is any good
satya - Tuesday, January 20, 2009 10:20:18 PM
another power point on coordinates
satya - Wednesday, January 21, 2009 8:32:05 AM
vertext coordinates frustum coordinates
vertext coordinates frustum coordinates
satya - Wednesday, January 21, 2009 8:36:31 AM
another book OpenGL Super Bible
satya - Wednesday, January 21, 2009 8:51:42 AM
Read this on vertex coordinates
satya - Wednesday, January 21, 2009 8:52:15 AM
where is the origin in OpenGL?
where is the origin in OpenGL?
satya - Wednesday, January 21, 2009 8:52:47 AM
Where is the Camera positioned by coordinates default in OpenGL
Where is the Camera positioned by coordinates default in OpenGL
Search for: Where is the Camera positioned by coordinates default in OpenGL
satya - Wednesday, January 21, 2009 8:53:17 AM
what is the relationship between vertex coordinates and frustum coordinates?
what is the relationship between vertex coordinates and frustum coordinates?
Search for: what is the relationship between vertex coordinates and frustum coordinates?
satya - Wednesday, January 21, 2009 9:02:29 AM
frustum vertex left right near far units
frustum vertex left right near far units
satya - Wednesday, January 21, 2009 1:53:25 PM
A really good place that explains frustums
satya - Wednesday, January 21, 2009 3:58:43 PM
another interesting read (pdf)
satya - Wednesday, February 11, 2009 1:42:47 PM
what is Jezzball?
what is Jezzball?