Searched refs:GL10 (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/opengl/tests/gldual/src/com/android/gldual/
H A DTriangleRenderer.java25 import javax.microedition.khronos.opengles.GL10;
37 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
43 gl.glDisable(GL10.GL_DITHER);
49 gl.glHint(GL10.GL_PERSPECTIVE_CORRECTION_HINT,
50 GL10.GL_FASTEST);
53 gl.glShadeModel(GL10.GL_SMOOTH);
56 public void onDrawFrame(GL10 gl) {
62 gl.glDisable(GL10.GL_DITHER);
70 gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10
[all...]
H A DGLDualGL2View.java39 import javax.microedition.khronos.opengles.GL10;
286 public void onDrawFrame(GL10 gl) {
290 public void onSurfaceChanged(GL10 gl, int width, int height) {
294 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
/frameworks/base/opengl/tests/lighting1709/src/com/android/lightingtest/
H A DClearActivity.java25 import javax.microedition.khronos.opengles.GL10;
70 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
74 public void onSurfaceChanged(GL10 gl, int w, int h) {
76 gl.glMatrixMode(GL10.GL_PROJECTION);
89 gl.glMatrixMode(GL10.GL_MODELVIEW);
94 public void onDrawFrame(GL10 gl) {
95 gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT);
113 gl.glDisable(GL10.GL_DITHER);
115 gl.glLightfv(GL10
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLWrapperBase.java20 import javax.microedition.khronos.opengles.GL10;
31 implements GL, GL10, GL10Ext, GL11, GL11Ext, GL11ExtensionPack {
33 mgl = (GL10) gl;
48 protected GL10 mgl;
H A DGLU.java19 import javax.microedition.khronos.opengles.GL10;
37 case GL10.GL_NO_ERROR:
39 case GL10.GL_INVALID_ENUM:
41 case GL10.GL_INVALID_VALUE:
43 case GL10.GL_INVALID_OPERATION:
45 case GL10.GL_STACK_OVERFLOW:
47 case GL10.GL_STACK_UNDERFLOW:
49 case GL10.GL_OUT_OF_MEMORY:
60 * @param gl a GL10 interface
71 public static void gluLookAt(GL10 g
[all...]
H A DTexture.java24 import javax.microedition.khronos.opengles.GL10;
85 private int loadTexture(GL10 gl,
121 public void setTextureParameters(GL10 gl) {
H A DMaterial.java21 import javax.microedition.khronos.opengles.GL10;
52 public void setMaterialParameters(GL10 gl) {
H A DGLSurfaceView.java29 import javax.microedition.khronos.opengles.GL10;
620 * static class MyGLImplementation implements GL,GL10,GL11,... {
666 * that it still needs. The {@link #onSurfaceCreated(GL10, EGLConfig)} method
697 void onSurfaceCreated(GL10 gl, EGLConfig config);
708 * void onSurfaceChanged(GL10 gl, int width, int height) {
712 * gl.glMatrixMode(GL10.GL_PROJECTION);
722 void onSurfaceChanged(GL10 gl, int width, int height);
731 * void onDrawFrame(GL10 gl) {
732 * gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10
[all...]
H A DGroup.java115 public void draw(GL10 gl) {
H A DObject3D.java238 public void draw(GL10 gl) {
/frameworks/base/opengl/tests/testPauseResume/src/com/android/test/
H A DTestView.java44 import javax.microedition.khronos.opengles.GL10;
71 public void onDrawFrame(GL10 gl) {
75 public void onSurfaceChanged(GL10 gl, int width, int height) {
79 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
/frameworks/base/opengl/tests/gl_jni/src/com/android/gljni/
H A DGLJNIView.java44 import javax.microedition.khronos.opengles.GL10;
71 public void onDrawFrame(GL10 gl) {
75 public void onSurfaceChanged(GL10 gl, int width, int height) {
79 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
/frameworks/base/opengl/tests/testFramerate/src/com/android/testframerate/
H A DTestFramerateView.java35 import javax.microedition.khronos.opengles.GL10;
72 public void onDrawFrame(GL10 gl) {
83 public void onSurfaceChanged(GL10 gl, int width, int height) {
87 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
/frameworks/base/opengl/tests/testViewport/src/com/android/test/
H A DTestView.java49 import javax.microedition.khronos.opengles.GL10;
209 public void draw(GL10 gl) {
212 gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
215 gl11.glVertexPointer(3, GL10.GL_FLOAT, VERTEX_SIZE, 0);
218 gl11.glDrawElements(GL10.GL_TRIANGLES, mIndexCount, GL10.GL_UNSIGNED_SHORT, 0);
219 gl.glDisableClientState(GL10.GL_VERTEX_ARRAY);
230 public void onDrawFrame(GL10 gl) {
232 gl.glClear(GL10.GL_COLOR_BUFFER_BIT);
236 public void onSurfaceChanged(GL10 g
[all...]
/frameworks/base/opengl/tests/gl2_java/src/com/android/gl2java/
H A DGL2JavaView.java34 import javax.microedition.khronos.opengles.GL10;
64 public void onDrawFrame(GL10 gl) {
79 public void onSurfaceChanged(GL10 gl, int width, int height) {
83 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
/frameworks/base/opengl/tests/gl2_jni/src/com/android/gl2jni/
H A DGL2JNIView.java46 import javax.microedition.khronos.opengles.GL10;
283 public void onDrawFrame(GL10 gl) {
287 public void onSurfaceChanged(GL10 gl, int width, int height) {
291 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
/frameworks/base/opengl/tests/gl_perfapp/src/com/android/glperf/
H A DGLPerfView.java46 import javax.microedition.khronos.opengles.GL10;
283 public void onDrawFrame(GL10 gl) {
287 public void onSurfaceChanged(GL10 gl, int width, int height) {
291 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
/frameworks/base/opengl/tests/testLatency/src/com/android/testlatency/
H A DTestLatencyView.java34 import javax.microedition.khronos.opengles.GL10;
93 public void onDrawFrame(GL10 gl) {
144 public void onSurfaceChanged(GL10 gl, int width, int height) {
152 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
/frameworks/base/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
H A DGL2CameraEye.java25 import javax.microedition.khronos.opengles.GL10;
185 public void onDrawFrame(GL10 glUnused) {
198 // Ignore the passed-in GL10 interface, and use the GLES20
232 public void onSurfaceChanged(GL10 glUnused, int width, int height) {
233 // Ignore the passed-in GL10 interface, and use the GLES20
240 public void onSurfaceCreated(GL10 glUnused, EGLConfig config) {
241 // Ignore the passed-in GL10 interface, and use the GLES20
/frameworks/base/opengl/tools/glgen/
H A Dgen66 javac -d classes com/google/android/gles_jni/GLImpl.java javax/microedition/khronos/opengles/GL10.java javax/microedition/khronos/opengles/GL10Ext.java javax/microedition/khronos/opengles/GL11.java javax/microedition/khronos/opengles/GL11Ext.java javax/microedition/khronos/opengles/GL11ExtensionPack.java android/opengl/GLES10.java android/opengl/GLES10Ext.java android/opengl/GLES11.java android/opengl/GLES11Ext.java android/opengl/GLES20.java
107 for x in GL.java GL10.java GL10Ext.java GL11.java GL11Ext.java GL11ExtensionPack.java
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
H A DVideoDumpView.java38 import javax.microedition.khronos.opengles.GL10;
367 public void onDrawFrame(GL10 glUnused) {
460 public void onSurfaceChanged(GL10 glUnused, int width, int height) {
514 public void onSurfaceCreated(GL10 glUnused, EGLConfig config) {
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL11.java22 public interface GL11 extends GL10 {
H A DGL10.java1 /* //device/java/android/javax/microedition/khronos/opengles/GL10.java
22 public interface GL10 extends GL { interface in inherits:GL
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java29 import javax.microedition.khronos.opengles.GL10;
35 public class GLImpl implements GL10, GL10Ext, GL11, GL11Ext, GL11ExtensionPack {

Completed in 198 milliseconds