HomeSort by relevance Sort by last modified time
    Searched defs:opengl (Results 51 - 67 of 67) sorted by null

1 23

  /development/samples/OpenGL/HelloOpenGLES20/src/com/example/android/opengl/
MyGLRenderer.java 16 package com.example.android.opengl;
21 import android.opengl.GLES20;
22 import android.opengl.GLSurfaceView;
23 import android.opengl.Matrix;
28 * must override the OpenGL ES drawing lifecycle methods:
30 * <li>{@link android.opengl.GLSurfaceView.Renderer#onSurfaceCreated}</li>
31 * <li>{@link android.opengl.GLSurfaceView.Renderer#onDrawFrame}</li>
32 * <li>{@link android.opengl.GLSurfaceView.Renderer#onSurfaceChanged}</li>
108 * Utility method for compiling a OpenGL shader.
131 * Utility method for debugging OpenGL calls. Provide the name of the cal
    [all...]
Square.java 16 package com.example.android.opengl;
23 import android.opengl.GLES20;
26 * A two-dimensional square for use as a drawn object in OpenGL ES 2.0.
71 * Sets up the drawing object data for use in an OpenGL ES context.
92 // prepare shaders and OpenGL program
100 mProgram = GLES20.glCreateProgram(); // create empty OpenGL Program
103 GLES20.glLinkProgram(mProgram); // create OpenGL program executables
107 * Encapsulates the OpenGL ES instructions for drawing this shape.
113 // Add program to OpenGL environment
Triangle.java 16 package com.example.android.opengl;
22 import android.opengl.GLES20;
25 * A two-dimensional triangle for use as a drawn object in OpenGL ES 2.0.
68 * Sets up the drawing object data for use in an OpenGL ES context.
85 // prepare shaders and OpenGL program
91 mProgram = GLES20.glCreateProgram(); // create empty OpenGL Program
94 GLES20.glLinkProgram(mProgram); // create OpenGL program executables
99 * Encapsulates the OpenGL ES instructions for drawing this shape.
105 // Add program to OpenGL environment
  /cts/suite/cts/deviceTests/opengl/src/com/android/cts/opengl/primitive/
GLPrimitiveActivity.java 14 package com.android.cts.opengl.primitive;
25 import com.android.cts.opengl.GLActivityIntentKeys;
  /cts/suite/cts/deviceTests/opengl/src/com/android/cts/opengl/reference/
GLGameActivity.java 14 package com.android.cts.opengl.reference;
16 import com.android.cts.opengl.GLActivityIntentKeys;
24 import android.opengl.GLES20;
25 import android.opengl.GLUtils;
  /cts/tests/tests/graphics/src/android/opengl/cts/
EglConfigGLSurfaceView.java 17 package android.opengl.cts;
20 import android.opengl.GLES20;
21 import android.opengl.GLSurfaceView;
OpenGlEsVersionCtsActivity.java 17 package android.opengl.cts;
21 import android.opengl.GLES31;
22 import android.opengl.GLES31Ext;
23 import android.opengl.GLSurfaceView;
35 * OpenGL ES is supported and returns what the GL version string reports.
OpenGlEsVersionTest.java 17 package android.opengl.cts;
43 // TODO: switch to android.opengl.EGL14/EGLExt and use the constants from there
64 assertEquals("Detected OpenGL ES major version " + detectedMajorVersion
68 assertEquals("Reported OpenGL ES version from ActivityManager differs from PackageManager",
100 assertTrue("OpenGL ES version 3.1 is missing extension " + requiredList[i],
120 assertFalse("FEATURE_OPENGLES_EXTENSION_PACK is available without OpenGL ES 3.1",
142 /** @return OpenGL ES major version 1, 2, or 3 or some non-positive number for error */
210 return 1 << 16; // Lack of property means OpenGL ES version 1
224 return 1 << 16; // Lack of property means OpenGL ES version 1
248 String message = "OpenGL version string '" + mActivity.getVersionString(
    [all...]
CompressedTextureLoader.java 16 package android.opengl.cts;
32 import android.opengl.ETC1;
33 import android.opengl.ETC1Util;
34 import android.opengl.GLES20;
CompressedTextureSurfaceView.java 17 package android.opengl.cts;
39 import android.opengl.ETC1;
40 import android.opengl.ETC1Util;
41 import android.opengl.GLES20;
42 import android.opengl.GLSurfaceView;
43 import android.opengl.GLUtils;
44 import android.opengl.Matrix;
  /cts/tests/tests/opengl/src/android/opengl/cts/
OpenGLES20NativeActivityOne.java 16 package android.opengl.cts;
20 import android.opengl.GLSurfaceView;
RendererOneColorBufferTest.java 18 package android.opengl.cts;
30 import android.opengl.GLES20;
31 import android.opengl.GLSurfaceView;
32 import android.opengl.GLU;
WrapperTest.java 17 package android.opengl.cts;
19 import android.opengl.EGL14;
20 import android.opengl.EGLConfig;
21 import android.opengl.EGLContext;
22 import android.opengl.EGLDisplay;
23 import android.opengl.EGLSurface;
24 import android.opengl.GLES10;
25 import android.opengl.GLES20;
33 * Test some aspects of the Java-language wrappers generated for OpenGL.
252 // Configure EGL for OpenGL ES 1.0 or 2.0, with a pbuffe
    [all...]
FramebufferTest.java 17 package android.opengl.cts;
21 import android.opengl.EGL14;
22 import android.opengl.EGLConfig;
23 import android.opengl.EGLContext;
24 import android.opengl.EGLDisplay;
25 import android.opengl.EGLExt;
26 import android.opengl.EGLSurface;
27 import android.opengl.GLES20;
28 import android.opengl.GLES30;
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 

Completed in 369 milliseconds

1 23