Searched refs:glReadPixels (Results 1 - 25 of 36) sorted by relevance

12

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGLToolbox.java72 GLES20.glReadPixels(0, 0, width, height, GLES20.GL_RGBA, GLES20.GL_UNSIGNED_BYTE, pixels);
73 checkGlError("glReadPixels");
78 GLES20.glReadPixels(0, 0, width, height, GLES20.GL_RGBA, GLES20.GL_UNSIGNED_BYTE, pixels);
79 checkGlError("glReadPixels");
/frameworks/av/cmds/screenrecord/
H A DFrameOutput.cpp131 // GLES only guarantees that glReadPixels() will work with GL_RGBA, so we
139 glReadPixels(0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, mPixelBuf);
141 ALOGE("glReadPixels failed: %#x", glErr);
/frameworks/base/libs/hwui/
H A DOpenGLReadback.cpp97 // part of glReadPixels, so this shouldn't pose any major stalls.
230 glReadPixels(0, 0, bitmap->width(), bitmap->height(), format,
/frameworks/base/media/mca/filterfw/native/core/
H A Dgl_frame.cpp350 glReadPixels(0,
/frameworks/rs/tests/java_api/GenImages/src/com/android/rs/genimage/
H A DGenImage.java253 GLES20.glReadPixels(0,0, 512, 512, GLES20.GL_RGBA,
/frameworks/native/libs/gui/tests/
H A DGLTest.cpp179 glReadPixels(x, y, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, pixel);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLES20RenderEngine.cpp72 glReadPixels(0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, pixels.data());
H A DRenderEngine.cpp252 glReadPixels(l, b, w, h, GL_RGBA, GL_UNSIGNED_BYTE, pixels);
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES10.spec82 void glReadPixels ( GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels )
H A DGLES20.spec94 void glReadPixels ( GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels )
H A DGLES30.spec111 void glReadPixels ( GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint offset )
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
H A DVideoDumpView.java85 // So far, glReadPixels only supports two (format, type) combinations
439 GLES20.glReadPixels(mStartX, mStartY, mWidth, mHeight,
443 checkGlError("glReadPixels");
445 Log.d(TAG, mDrawNumber + "/" + frameNumber + " after glReadPixels "
/frameworks/base/opengl/java/android/opengl/
H A DGLES10.java1039 // C function void glReadPixels ( GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels )
1041 public static native void glReadPixels( method in class:GLES10
H A DGLErrorWrapper.java663 public void glReadPixels(int x, int y, int width, int height, int format, method in class:GLErrorWrapper
666 mgl.glReadPixels(x, y, width, height, format, type, pixels);
H A DGLES20.java1314 // C function void glReadPixels ( GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels )
1316 public static native void glReadPixels( method in class:GLES20
H A DGLES30.java1817 // C function void glReadPixels ( GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint offset )
1819 public static native void glReadPixels( method in class:GLES30
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java792 void glReadPixels( method in interface:GL10
/frameworks/av/media/libstagefright/tests/
H A DSurfaceMediaSource_test.cpp291 glReadPixels(x, y, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, pixel);
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DSurfaceTextureRenderer.java784 // glReadPixels reads from the bottom of the buffer, so add an extra vertical flip
794 GLES20.glReadPixels(/*x*/ 0, /*y*/ 0, holder.width, holder.height,
796 checkGlError("glReadPixels");
/frameworks/base/libs/hwui/debug/
H A Dgles_redefine.h711 #define glReadPixels wrap_glReadPixels macro
H A Dgles_undefine.h711 #undef glReadPixels macro
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java864 // C function void glReadPixels ( GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels )
866 public native void glReadPixels( method in class:GLImpl
/frameworks/native/opengl/include/GLES/
H A Dgl.h715 GL_API void GL_APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels);
/frameworks/native/opengl/tests/angeles/include/GLES/
H A Dgl.h554 GLAPI void APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels);
/frameworks/native/opengl/include/GLES2/
H A Dgl2.h620 GL_APICALL void GL_APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels);

Completed in 206 milliseconds

12