HomeSort by relevance Sort by last modified time
    Searched defs:framebuffers (Results 1 - 7 of 7) sorted by null

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
FrameBufferObjectActivity.java 197 int[] framebuffers = new int[1]; local
198 gl11ep.glGenFramebuffersOES(1, framebuffers, 0);
199 framebuffer = framebuffers[0];
  /external/qemu/android/camera/
camera-capture-linux.c 70 /* Framebuffers are shared via memory mapping. */
72 /* Framebuffers are available via user pointers. */
74 /* Framebuffers are to be read from the device. */
103 /* Allocated framebuffers. */
104 struct CameraFrameBuffer* framebuffers; member in struct:LinuxCameraDevice
105 /* Actual number of allocated framebuffers. */
194 /* Frees array of framebuffers, depending on the I/O method the array has been
209 /* Unmap framebuffers. */
221 /* Free framebuffers. */
274 if (lcd->framebuffers != NULL)
    [all...]
  /frameworks/base/core/jni/
android_opengl_GLES11Ext.cpp 2454 GLuint *framebuffers = (GLuint *) 0; local
2504 GLuint *framebuffers = (GLuint *) 0; local
2540 GLuint *framebuffers = (GLuint *) 0; local
2590 GLuint *framebuffers = (GLuint *) 0; local
    [all...]
android_opengl_GLES20.cpp 828 /* void glDeleteFramebuffers ( GLsizei n, const GLuint *framebuffers ) */
837 GLuint *framebuffers = (GLuint *) 0; local
842 _exceptionMessage = "framebuffers == null";
860 framebuffers = framebuffers_base + offset;
864 (GLuint *)framebuffers
877 /* void glDeleteFramebuffers ( GLsizei n, const GLuint *framebuffers ) */
887 GLuint *framebuffers = (GLuint *) 0; local
889 framebuffers = (GLuint *)getPointer(_env, framebuffers_buf, &_array, &_remaining, &_bufferOffset);
896 if (framebuffers == NULL) {
898 framebuffers = (GLuint *) (_framebuffersBase + _bufferOffset)
1398 GLuint *framebuffers = (GLuint *) 0; local
1448 GLuint *framebuffers = (GLuint *) 0; local
    [all...]
com_google_android_gles_jni_GLImpl.cpp 7345 GLuint *framebuffers = (GLuint *) 0; local
7400 GLuint *framebuffers = (GLuint *) 0; local
7586 GLuint *framebuffers = (GLuint *) 0; local
7641 GLuint *framebuffers = (GLuint *) 0; local
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_autogen.h 570 const GLuint* framebuffers = GetSharedMemoryAs<const GLuint*>( local
572 if (framebuffers == NULL) {
575 DeleteFramebuffersHelper(n, framebuffers);
587 const GLuint* framebuffers = GetImmediateDataAs<const GLuint*>( local
589 if (framebuffers == NULL) {
592 DeleteFramebuffersHelper(n, framebuffers);
879 GLuint* framebuffers = GetSharedMemoryAs<GLuint*>( local
881 if (framebuffers == NULL) {
884 if (!GenFramebuffersHelper(n, framebuffers)) {
898 GLuint* framebuffers = GetImmediateDataAs<GLuint*> local
    [all...]
  /external/chromium_org/ppapi/lib/gl/gles2/
gles2.c 170 void GL_APIENTRY glDeleteFramebuffers(GLsizei n, const GLuint* framebuffers) {
172 glGetCurrentContextPPAPI(), n, framebuffers); local
276 void GL_APIENTRY glGenFramebuffers(GLsizei n, GLuint* framebuffers) {
278 glGetCurrentContextPPAPI(), n, framebuffers); local

Completed in 110 milliseconds