HomeSort by relevance Sort by last modified time
    Searched refs:GL (Results 26 - 50 of 95) sorted by null

12 3 4

  /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...]
  /build/target/board/generic/
BoardConfig.mk 45 # the GLES renderer disables itself if host GL acceleration isn't available.
  /external/quake/quake/src/QW/client/
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
  /frameworks/native/opengl/tests/testViewport/src/com/android/test/
TestView.java 48 import javax.microedition.khronos.opengles.GL;
186 public void createBufferObjects(GL gl) {
189 GL11 gl11 = (GL11) gl;
209 public void draw(GL10 gl) {
210 GL11 gl11 = (GL11) gl;
212 gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
219 gl.glDisableClientState(GL10.GL_VERTEX_ARRAY);
230 public void onDrawFrame(GL10 gl) {
231 gl.glClearColor(0,0,1,1)
    [all...]
  /frameworks/native/opengl/tools/glgen/
gen 51 GLFILE=out/javax/microedition/khronos/opengles/GL.java
153 for x in GL.java GL10.java GL10Ext.java GL11.java GL11Ext.java GL11ExtensionPack.java
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/GL/
glx.h 31 #include <GL/vms_x_fix.h>
45 #include <GL/gl.h>
300 #include <GL/glxext.h>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/GL/
glx.h 31 #include <GL/vms_x_fix.h>
45 #include <GL/gl.h>
300 #include <GL/glxext.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/GL/
glx.h 31 #include <GL/vms_x_fix.h>
45 #include <GL/gl.h>
300 #include <GL/glxext.h>
  /cts/tests/tests/media/src/android/media/cts/
OutputSurface.java 35 import javax.microedition.khronos.opengles.GL;
43 * The (width,height) constructor for this class will prepare GL, create a SurfaceTexture,
46 * texture with updateTexImage, then render the texture with GL to a pbuffer.
48 * The no-arg constructor skips the GL preparation step and doesn't allocate a pbuffer.
  /external/eigen/demos/opengl/
gpuhelper.cpp 12 #include <GL/glu.h>
icosphere.cpp 12 #include <GL/gl.h>
  /external/skia/src/gpu/gl/unix/
SkNativeGLContext_unix.cpp 8 #include "gl/SkNativeGLContext.h"
10 #include <GL/glu.h>
175 // Install an X error handler so the application won't exit if GL 3.0
224 //SkDebugf( "Created GL 3.0 context.\n" );
226 // Couldn't create GL 3.0 context.
239 //SkDebugf("Failed to create GL 3.0 context."
276 SkDebugf("Failed to create gl interface");
  /external/webkit/Source/WebCore/platform/graphics/gtk/
GraphicsContext3DInternal.cpp 27 #include <GL/glx.h>
  /frameworks/native/opengl/libagl/
context.h 31 #include <GLES/gl.h>
47 namespace gl { namespace in namespace:android
598 typedef ogles_context_t* GL;
599 void (*renderPoint)(GL, vertex_t*);
600 void (*renderLine)(GL, vertex_t*, vertex_t*);
601 void (*renderTriangle)(GL, vertex_t*, vertex_t*, vertex_t*);
636 }; // namespace gl
639 using namespace android::gl;
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLDispatch.cpp 21 #include <GL/glx.h>
  /external/skia/src/gpu/gl/win/
GrGLCreateNativeInterface_win.cpp 10 #include "gl/GrGLInterface.h"
14 #include <GL/GL.h>
17 * Windows makes the GL funcs all be __stdcall instead of __cdecl :(
22 #define GR_GL_GET_PROC(F) interface->f ## F = (GrGL ## F ## Proc) wglGetProcAddress("gl" #F);
23 #define GR_GL_GET_PROC_SUFFIX(F, S) interface->f ## F = (GrGL ## F ## Proc) wglGetProcAddress("gl" #F #S);
27 // GL Function pointers retrieved in one context may not be valid in another
41 // Functions that are part of GL 1.1 will return NULL in
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
GLSurfaceViewCustom.java 35 import javax.microedition.khronos.opengles.GL;
195 * Check glError() after every GL call and throw an exception if glError indicates
205 * Log GL calls to the system log at "verbose" level with tag "GLSurfaceView".
259 * {@link GLWrapper#wrap(GL)} method is called
261 * the GL object that's passed to the renderer. Wrapping a GL
263 * GL calls made by the renderer.
569 * Queue a runnable to be run on the GL rendering thread. This can be used
572 * @param r the runnable to be run on the GL rendering thread.
622 * An interface used to wrap a GL interface
1123 GL gl = mEglContext.getGL(); local
1285 GL10 gl = null; local
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GLSurfaceView.java 28 import javax.microedition.khronos.opengles.GL;
172 * Check glError() after every GL call and throw an exception if glError indicates
182 * Log GL calls to the system log at "verbose" level with tag "GLSurfaceView".
218 * {@link GLWrapper#wrap(GL)} method is called
220 * the GL object that's passed to the renderer. Wrapping a GL
222 * GL calls made by the renderer.
519 * Queue a runnable to be run on the GL rendering thread. This can be used
522 * @param r the runnable to be run on the GL rendering thread.
551 * An interface used to wrap a GL interface
995 GL gl = mEglContext.getGL(); local
1122 GL10 gl = null; local
    [all...]
GLErrorLogger.java 24 import javax.microedition.khronos.opengles.GL;
34 public GL wrap(GL gl) {
35 return new ErrorLoggingGL(gl);
38 static class ErrorLoggingGL implements GL, GL10, GL10Ext, GL11, GL11Ext {
39 private GL mGL;
41 public ErrorLoggingGL(GL gl) {
42 mGL = gl;
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLSurfaceView.java 29 import javax.microedition.khronos.opengles.GL;
191 * Check glError() after every GL call and throw an exception if glError indicates
201 * Log GL calls to the system log at "verbose" level with tag "GLSurfaceView".
255 * {@link GLWrapper#wrap(GL)} method is called
257 * the GL object that's passed to the renderer. Wrapping a GL
259 * GL calls made by the renderer.
565 * Queue a runnable to be run on the GL rendering thread. This can be used
568 * @param r the runnable to be run on the GL rendering thread.
618 * An interface used to wrap a GL interface
1113 GL gl = mEglContext.getGL(); local
1275 GL10 gl = null; local
    [all...]
  /external/eigen/unsupported/test/
openglsupport.cpp 12 #include <GL/glew.h>
14 #include <GL/glut.h>
  /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/tests/HwAccelerationTest/src/com/android/test/hwui/
GLTextureViewActivity.java 41 import javax.microedition.khronos.opengles.GL;
145 private GL mGL;
342 Log.w(LOG_TAG, "GL error = 0x" + Integer.toHexString(error));

Completed in 543 milliseconds

12 3 4