Searched refs:attachments (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportReceiver.java128 final ArrayList<Uri> attachments = Lists.newArrayList(bugreportUri, screenshotUri);
129 intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, attachments);
/frameworks/base/opengl/java/android/opengl/
H A DGLES30.java1710 // C function void glInvalidateFramebuffer ( GLenum target, GLsizei numAttachments, const GLenum *attachments )
1715 int[] attachments,
1719 // C function void glInvalidateFramebuffer ( GLenum target, GLsizei numAttachments, const GLenum *attachments )
1724 java.nio.IntBuffer attachments
1727 // C function void glInvalidateSubFramebuffer ( GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height )
1732 int[] attachments,
1740 // C function void glInvalidateSubFramebuffer ( GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height )
1745 java.nio.IntBuffer attachments,
1712 glInvalidateFramebuffer( int target, int numAttachments, int[] attachments, int offset ) argument
1729 glInvalidateSubFramebuffer( int target, int numAttachments, int[] attachments, int offset, int x, int y, int width, int height ) argument
1742 glInvalidateSubFramebuffer( int target, int numAttachments, java.nio.IntBuffer attachments, int x, int y, int width, int height ) argument
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES30.spec106 void glInvalidateFramebuffer ( GLenum target, GLsizei numAttachments, const GLenum *attachments )
107 void glInvalidateSubFramebuffer ( GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height )
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES30.cpp4803 /* void glInvalidateFramebuffer ( GLenum target, GLsizei numAttachments, const GLenum *attachments ) */
4812 GLenum *attachments = (GLenum *) 0; local
4817 _exceptionMessage = "attachments == null";
4829 attachments = attachments_base + offset;
4834 (GLenum *)attachments
4847 /* void glInvalidateFramebuffer ( GLenum target, GLsizei numAttachments, const GLenum *attachments ) */
4854 GLenum *attachments = (GLenum *) 0; local
4856 attachments = (GLenum *)getPointer(_env, attachments_buf, &_array, &_remaining, &_bufferOffset);
4857 if (attachments == NULL) {
4859 attachments
4880 GLenum *attachments = (GLenum *) 0; local
4926 GLenum *attachments = (GLenum *) 0; local
[all...]
/frameworks/base/libs/hwui/
H A DLayerRenderer.cpp351 const GLenum attachments[] = { GL_COLOR_ATTACHMENT0 }; local
352 glDiscardFramebufferEXT(GL_FRAMEBUFFER, 1, attachments);
H A DOpenGLRenderer.cpp259 const GLenum attachments[] = { local
262 glDiscardFramebufferEXT(GL_FRAMEBUFFER, 1, attachments);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.h265 void GLTrace_glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments);
266 void GLTrace_glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments, GLint x, GLint y, GLsizei width, GLsizei height);
310 void GLTrace_glDiscardFramebufferEXT(GLenum target, GLsizei numAttachments, const GLenum *attachments);
H A Dgltrace_api.cpp10077 void GLTrace_glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments) { argument
10095 // copy argument attachments
10099 arg_attachments->add_intvalue((int)attachments);
10104 glContext->hooks->gl.glInvalidateFramebuffer(target, numAttachments, attachments);
10109 (void *) attachments,
10118 void GLTrace_glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments, GLint x, GLint y, GLsizei width, GLsizei height) { argument
10136 // copy argument attachments
10140 arg_attachments->add_intvalue((int)attachments);
10169 glContext->hooks->gl.glInvalidateSubFramebuffer(target, numAttachments, attachments, x, y, width, height);
10174 (void *) attachments,
12127 GLTrace_glDiscardFramebufferEXT(GLenum target, GLsizei numAttachments, const GLenum *attachments) argument
[all...]
/frameworks/native/opengl/include/GLES/
H A Dglext.h943 GL_API void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments);
945 typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments);
/frameworks/native/opengl/include/GLES2/
H A Dgl2ext.h986 GL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments);
988 typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments);
/frameworks/native/opengl/include/GLES3/
H A Dgl3.h1051 GL_APICALL void GL_APIENTRY glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const GLenum* attachments);
1052 GL_APICALL void GL_APIENTRY glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, const GLenum* attachments, GLint x, GLint y, GLsizei width, GLsizei height);

Completed in 436 milliseconds