Searched defs:attachments (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/libs/hwui/
H A DLayerRenderer.cpp346 const GLenum attachments[] = { GL_COLOR_ATTACHMENT0 }; local
347 glDiscardFramebufferEXT(GL_FRAMEBUFFER, 1, attachments);
H A DOpenGLRenderer.cpp246 const GLenum attachments[] = { local
249 glDiscardFramebufferEXT(GL_FRAMEBUFFER, 1, attachments);
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES30.cpp4805 /* void glInvalidateFramebuffer ( GLenum target, GLsizei numAttachments, const GLenum *attachments ) */
4814 GLenum *attachments = (GLenum *) 0; local
4819 _exceptionMessage = "attachments == null";
4831 attachments = attachments_base + offset;
4836 (GLenum *)attachments
4849 /* void glInvalidateFramebuffer ( GLenum target, GLsizei numAttachments, const GLenum *attachments ) */
4856 GLenum *attachments = (GLenum *) 0; local
4858 attachments = (GLenum *)getPointer(_env, attachments_buf, &_array, &_remaining, &_bufferOffset);
4859 if (attachments == NULL) {
4861 attachments
4882 GLenum *attachments = (GLenum *) 0; local
4928 GLenum *attachments = (GLenum *) 0; local
[all...]
/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/libs/GLES_trace/src/
H A Dgltrace_api.cpp10076 void GLTrace_glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum * attachments) { argument
10094 // copy argument attachments
10098 arg_attachments->add_int64value((uintptr_t)attachments);
10103 glContext->hooks->gl.glInvalidateFramebuffer(target, numAttachments, attachments);
10108 (void *) attachments,
10117 void GLTrace_glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum * attachments, GLint x, GLint y, GLsizei width, GLsizei height) { argument
10135 // copy argument attachments
10139 arg_attachments->add_int64value((uintptr_t)attachments);
10168 glContext->hooks->gl.glInvalidateSubFramebuffer(target, numAttachments, attachments, x, y, width, height);
10173 (void *) attachments,
16508 GLTrace_glDiscardFramebufferEXT(GLenum target, GLsizei numAttachments, const GLenum * attachments) argument
[all...]

Completed in 136 milliseconds