HomeSort by relevance Sort by last modified time
    Searched refs:GL (Results 1 - 25 of 42) sorted by null

1 2

  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL.java 1 /* //device/java/android/javax/microedition/khronos/opengles/GL.java
20 public interface GL {
GL10Ext.java 22 public interface GL10Ext extends GL {
GL11Ext.java 22 public interface GL11Ext extends GL {
GL11ExtensionPack.java 22 public interface GL11ExtensionPack extends GL {
  /frameworks/base/opengl/tools/glgen/stubs/jsr239/
GLHeader.java-if 1 /* //device/java/android/javax/microedition/khronos/opengles/GL.java
20 public interface GL {
  /frameworks/base/opengl/java/com/google/android/gles_jni/
EGLContextImpl.java 21 import javax.microedition.khronos.opengles.GL;
33 public GL getGL() {
  /frameworks/base/opengl/java/javax/microedition/khronos/egl/
EGLContext.java 20 import javax.microedition.khronos.opengles.GL;
30 public abstract GL getGL();
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
SpriteTextActivity.java 19 import javax.microedition.khronos.opengles.GL;
32 public GL wrap(GL gl) {
33 return new MatrixTrackingGL(gl);
MatrixTrackingGL.java 28 import javax.microedition.khronos.opengles.GL;
43 class MatrixTrackingGL implements GL, GL10, GL10Ext, GL11, GL11Ext {
60 public MatrixTrackingGL(GL gl) {
61 mgl = (GL10) gl;
62 if (gl instanceof GL10Ext) {
63 mgl10Ext = (GL10Ext) gl;
65 if (gl instanceof GL11) {
66 mgl11 = (GL11) gl;
68 if (gl instanceof GL11Ext)
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLDebugHelper.java 22 import javax.microedition.khronos.opengles.GL;
27 * Wraps the supplied GL interface with a new GL interface that adds support for
34 * Wrap an existing GL interface in a new GL interface that adds support for
37 * Wrapping means that the GL instance that is passed in to this method is
38 * wrapped inside a new GL instance that optionally performs additional
39 * operations before and after calling the wrapped GL instance.
42 * glError after each GL operation,
45 * is an alternative to manually calling glError after every GL operation
    [all...]
GLWrapperBase.java 19 import javax.microedition.khronos.opengles.GL;
27 * The abstract base class for a GL wrapper. Provides
31 implements GL, GL10, GL10Ext, GL11, GL11Ext {
32 public GLWrapperBase(GL gl) {
33 mgl = (GL10) gl;
34 if (gl instanceof GL10Ext) {
35 mgl10Ext = (GL10Ext) gl;
37 if (gl instanceof GL11) {
38 mgl11 = (GL11) gl;
    [all...]
GLSurfaceView.java 28 import javax.microedition.khronos.opengles.GL;
185 * Check glError() after every GL call and throw an exception if glError indicates
195 * Log GL calls to the system log at "verbose" level with tag "GLSurfaceView".
233 * {@link GLWrapper#wrap(GL)} method is called
235 * the GL object that's passed to the renderer. Wrapping a GL
237 * GL calls made by the renderer.
513 * Queue a runnable to be run on the GL rendering thread. This can be used
516 * @param r the runnable to be run on the GL rendering thread.
536 * An interface used to wrap a GL interface
992 GL gl = mEglContext.getGL(); local
1151 GL10 gl = null; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxgl_c.h 31 #include <GL/Amigamesa.h>
  /external/quake/quake/src/QW/client/
qwcl.mak 7 CFG=qwcl - Win32 GL Debug
8 !MESSAGE No configuration specified. Defaulting to qwcl - Win32 GL Debug.
12 "$(CFG)" != "qwcl - Win32 GL Debug" && "$(CFG)" != "qwcl - Win32 GL Release"
17 !MESSAGE NMAKE /f "qwcl.mak" CFG="qwcl - Win32 GL Debug"
23 !MESSAGE "qwcl - Win32 GL Debug" (based on "Win32 (x86) Application")
24 !MESSAGE "qwcl - Win32 GL Release" (based on "Win32 (x86) Application")
36 # PROP Target_Last_Scanned "qwcl - Win32 GL Debug"
620 !ELSEIF "$(CFG)" == "qwcl - Win32 GL Debug"
624 # PROP BASE Output_Dir "GL Debug"
    [all...]
glquake.h 34 #include <GLES/gl.h>
38 #include <GL/gl.h>
39 #include <GL/glu.h>
210 extern int skytexturenum; // index in cl.loadmodel, not gl texture object
  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_ph_video.h 41 #include <GL/qnxgl.h>
42 #include <GL/GLPh.h>
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11gl_c.h 25 #include <GL/glx.h>
35 GLXContext glx_context; /* Current GL context */
  /external/qemu/distrib/sdl-1.2.12/src/video/ataricommon/
SDL_atarigl_c.h 30 #include <GL/osmesa.h>
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CubeMapActivity.java 27 import javax.microedition.khronos.opengles.GL;
57 public void onDrawFrame(GL10 gl) {
58 checkGLError(gl);
60 gl.glClearColor(0,0,1,0);
64 gl.glClearColor(1,0,0,0);
66 gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT);
67 gl.glEnable(GL10.GL_DEPTH_TEST);
68 gl.glMatrixMode(GL10.GL_MODELVIEW);
69 gl.glLoadIdentity();
71 GLU.gluLookAt(gl, 0, 0, -5, 0f, 0f, 0f, 0f, 1.0f, 0.0f)
    [all...]
MatrixPaletteRenderer.java 27 import javax.microedition.khronos.opengles.GL;
181 public void createBufferObjects(GL gl) {
184 GL11 gl11 = (GL11) gl;
204 public void draw(GL10 gl) {
205 GL11 gl11 = (GL11) gl;
206 GL11Ext gl11Ext = (GL11Ext) gl;
208 gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
214 gl.glEnableClientState(GL11Ext.GL_MATRIX_INDEX_ARRAY_OES);
215 gl.glEnableClientState(GL11Ext.GL_WEIGHT_ARRAY_OES)
    [all...]
FrameBufferObjectActivity.java 20 import javax.microedition.khronos.opengles.GL;
60 public void onDrawFrame(GL10 gl) {
61 checkGLError(gl);
63 GL11ExtensionPack gl11ep = (GL11ExtensionPack) gl;
65 drawOffscreenImage(gl, mSurfaceWidth, mSurfaceHeight);
68 drawOffscreenImage(gl, mFramebufferWidth, mFramebufferHeight);
70 drawOnscreen(gl, mSurfaceWidth, mSurfaceHeight);
75 gl.glClearColor(1,0,0,0);
76 gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT);
80 public void onSurfaceChanged(GL10 gl, int width, int height)
    [all...]
  /frameworks/base/opengl/tools/glgen/
gen 32 GLFILE=out/javax/microedition/khronos/opengles/GL.java
107 for x in GL.java GL10.java GL10Ext.java GL11.java GL11Ext.java GL11ExtensionPack.java
  /frameworks/base/include/private/opengles/
gl_context.h 32 #include <GLES/gl.h>
50 namespace gl { namespace in namespace:android
601 typedef ogles_context_t* GL;
602 void (*renderPoint)(GL, vertex_t*);
603 void (*renderLine)(GL, vertex_t*, vertex_t*);
604 void (*renderTriangle)(GL, vertex_t*, vertex_t*, vertex_t*);
654 }; // namespace gl
  /external/quake/quake/src/WinQuake/
glquake.h 34 #include <GLES/gl.h>
38 #include <GL/gl.h>
39 #include <GL/glu.h>
199 extern int skytexturenum; // index in cl.loadmodel, not gl texture object
  /frameworks/base/graphics/java/android/graphics/
Canvas.java 25 import javax.microedition.khronos.opengles.GL;
38 /* Our native canvas can be either a raster, gl, or picture canvas.
41 java-bitmap is). If we are a gl-based, then mBitmap will be null, and
46 private GL mGL; // if not null, mBitmap must be null
101 * Construct a canvas with the specified gl context. All drawing through
103 * be supported in this mode (e.g. some GL implementations may not support
110 public Canvas(GL gl) {
112 mGL = gl;
117 * Return the GL object associated with this canvas, or null if it is no
    [all...]

Completed in 705 milliseconds

1 2