Searched refs:gl (Results 1 - 13 of 13) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DGLES11IdImpl.java47 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset) { argument
49 gl.glDeleteTextures(n, textures, offset);
54 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) { argument
56 gl.glDeleteBuffers(n, buffers, offset);
H A DGLId.java28 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset); argument
30 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset); argument
H A DGLES11Canvas.java99 public GLES11Canvas(GL11 gl) { argument
100 mGL = gl;
101 mGLState = new GLState(gl);
111 gl.glBindBuffer(GL11.GL_ARRAY_BUFFER, mBoxCoords);
112 gl.glBufferData(GL11.GL_ARRAY_BUFFER, xyBuffer.capacity() * (Float.SIZE / Byte.SIZE),
115 gl.glVertexPointer(2, GL11.GL_FLOAT, 0, 0);
116 gl.glTexCoordPointer(2, GL11.GL_FLOAT, 0, 0);
119 gl.glClientActiveTexture(GL11.GL_TEXTURE1);
120 gl.glTexCoordPointer(2, GL11.GL_FLOAT, 0, 0);
121 gl
597 GLState(GL11 gl) argument
[all...]
H A DGLES20IdImpl.java25 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset) { argument
32 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) { argument
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
H A DGLId.java28 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset); argument
30 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset); argument
H A DGLES20IdImpl.java25 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset) { argument
32 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) { argument
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DMosaicRendererSurfaceViewRenderer.java43 public void onDrawFrame(GL10 gl) { argument
48 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
57 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/packages/apps/Nfc/src/com/android/nfc/
H A DFireflyRenderer.java397 public void draw(GL10 gl) { argument
398 gl.glLoadIdentity();
401 gl.glFrontFace(GL10.GL_CCW);
403 gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
404 gl.glEnableClientState(GL10.GL_TEXTURE_COORD_ARRAY);
406 gl.glVertexPointer(3, GL10.GL_FLOAT, 0, mVertexBuffer);
407 gl.glTexCoordPointer(2, GL10.GL_FLOAT, 0, mTextureBuffer);
409 gl.glTranslatef(mX, mY, -NEAR_CLIPPING_PLANE-mZ*(FAR_CLIPPING_PLANE-NEAR_CLIPPING_PLANE));
410 gl.glColor4f(1, 1, 1, mAlpha);
413 gl
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DGLRootView.java135 // Uncomment this to enable gl error check.
285 GL11 gl = (GL11) gl1;
288 Log.i(TAG, "GLObject has changed from " + mGL + " to " + gl);
292 mGL = gl;
293 mCanvas = ApiHelper.HAS_GLES20_REQUIRED ? new GLES20Canvas() : new GLES11Canvas(gl);
321 GL11 gl = (GL11) gl1;
322 Utils.assertTrue(mGL == gl);
341 public void onDrawFrame(GL10 gl) { argument
355 onDrawFrameLocked(gl);
391 private void onDrawFrameLocked(GL10 gl) { argument
[all...]
/packages/experimental/CameraPreviewTest/src/com/example/android/videochatcameratest/
H A DSurfaceTextureView.java175 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
204 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
211 public void onDrawFrame(GL10 gl) { argument
/packages/apps/Gallery2/src/com/android/photos/views/
H A DTiledImageView.java286 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
293 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
299 public void onDrawFrame(GL10 gl) { argument
/packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/views/
H A DTiledImageView.java298 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
305 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
311 public void onDrawFrame(GL10 gl) { argument
/packages/apps/Camera2/src/com/android/camera/
H A DSurfaceTextureRenderer.java34 public void onDrawFrame(GL10 gl); argument

Completed in 444 milliseconds