Searched refs:attachments (Results 1 - 25 of 59) sorted by path

123

/external/deqp/framework/opengl/
H A DgluCallLogWrapper.inl2398 void CallLogWrapper::glInvalidateFramebuffer (glw::GLenum target, glw::GLsizei numAttachments, const glw::GLenum *attachments)
2401 m_log << TestLog::Message << "glInvalidateFramebuffer(" << getFramebufferTargetStr(target) << ", " << numAttachments << ", " << getEnumPointerStr(attachments, numAttachments, getInvalidateAttachmentName) << ");" << TestLog::EndMessage;
2402 m_gl.invalidateFramebuffer(target, numAttachments, attachments);
2405 void CallLogWrapper::glInvalidateNamedFramebufferData (glw::GLuint framebuffer, glw::GLsizei numAttachments, const glw::GLenum *attachments)
2408 m_log << TestLog::Message << "glInvalidateNamedFramebufferData(" << framebuffer << ", " << numAttachments << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<const void*>(attachments))) << ");" << TestLog::EndMessage;
2409 m_gl.invalidateNamedFramebufferData(framebuffer, numAttachments, attachments);
2412 void CallLogWrapper::glInvalidateNamedFramebufferSubData (glw::GLuint framebuffer, glw::GLsizei numAttachments, const glw::GLenum *attachments, glw::GLint x, glw::GLint y, glw::GLsizei width, glw::GLsizei height)
2415 m_log << TestLog::Message << "glInvalidateNamedFramebufferSubData(" << framebuffer << ", " << numAttachments << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<const void*>(attachments))) << ", " << x << ", " << y << ", " << width << ", " << height << ");" << TestLog::EndMessage;
2416 m_gl.invalidateNamedFramebufferSubData(framebuffer, numAttachments, attachments, x, y, width, height);
2419 void CallLogWrapper::glInvalidateSubFramebuffer (glw::GLenum target, glw::GLsizei numAttachments, const glw::GLenum *attachments, gl
[all...]
H A DgluCallLogWrapperApi.inl323 void glInvalidateFramebuffer (glw::GLenum target, glw::GLsizei numAttachments, const glw::GLenum *attachments);
324 void glInvalidateNamedFramebufferData (glw::GLuint framebuffer, glw::GLsizei numAttachments, const glw::GLenum *attachments);
325 void glInvalidateNamedFramebufferSubData (glw::GLuint framebuffer, glw::GLsizei numAttachments, const glw::GLenum *attachments, glw::GLint x, glw::GLint y, glw::GLsizei width, glw::GLsizei height);
326 void glInvalidateSubFramebuffer (glw::GLenum target, glw::GLsizei numAttachments, const glw::GLenum *attachments, glw::GLint x, glw::GLint y, glw::GLsizei width, glw::GLsizei height);
H A DgluStrUtil.cpp121 detail::EnumPointerFmt getInvalidateAttachmentStr (const deUint32* attachments, int numAttachments) argument
123 return detail::EnumPointerFmt(attachments, (deUint32)numAttachments, getInvalidateAttachmentName);
H A DgluStrUtil.hpp92 detail::EnumPointerFmt getInvalidateAttachmentStr (const deUint32* attachments, int numAttachments);
/external/deqp/framework/opengl/simplereference/
H A DsglrContext.hpp139 virtual void invalidateSubFramebuffer(deUint32 target, int numAttachments, const deUint32* attachments, int x, int y, int width, int height) = DE_NULL;
140 virtual void invalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments) = DE_NULL;
H A DsglrContextWrapper.cpp364 void ContextWrapper::glInvalidateSubFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments, int x, int y, int width, int height) argument
366 m_curCtx->invalidateSubFramebuffer(target, numAttachments, attachments, x, y, width, height);
369 void ContextWrapper::glInvalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments) argument
371 m_curCtx->invalidateFramebuffer(target, numAttachments, attachments);
H A DsglrContextWrapper.hpp293 void glInvalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments);
294 void glInvalidateSubFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments, int x, int y, int width, int height);
H A DsglrGLContext.cpp618 void GLContext::invalidateSubFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments, int x, int y, int width, int height) argument
625 << glu::getInvalidateAttachmentStr(attachments, numAttachments) << ", "
629 m_context.getFunctions().invalidateSubFramebuffer(target, numAttachments, attachments, x+drawOffset.x(), y+drawOffset.y(), width, height);
632 void GLContext::invalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments) argument
634 m_wrapper->glInvalidateFramebuffer(target, numAttachments, attachments);
H A DsglrGLContext.hpp151 virtual void invalidateSubFramebuffer(deUint32 target, int numAttachments, const deUint32* attachments, int x, int y, int width, int height);
152 virtual void invalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments);
H A DsglrReferenceContext.cpp3280 void ReferenceContext::invalidateSubFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments, int x, int y, int width, int height)
3283 RC_IF_ERROR((numAttachments < 0) || (numAttachments > 1 && attachments == DE_NULL), GL_INVALID_VALUE, RC_RET_VOID);
3286 // \todo [2012-07-17 pyry] Support multiple color attachments.
3297 bool isColor = attachments[attNdx] == (isFboBound ? GL_COLOR_ATTACHMENT0 : GL_COLOR);
3298 bool isDepth = attachments[attNdx] == (isFboBound ? GL_DEPTH_ATTACHMENT : GL_DEPTH);
3299 bool isStencil = attachments[attNdx] == (isFboBound ? GL_STENCIL_ATTACHMENT : GL_STENCIL);
3300 bool isDepthStencil = isFboBound && attachments[attNdx] == GL_DEPTH_STENCIL_ATTACHMENT;
3336 void ReferenceContext::invalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments)
3338 // \todo [2012-07-17 pyry] Support multiple color attachments.
3353 invalidateSubFramebuffer(target, numAttachments, attachments,
[all...]
H A DsglrReferenceContext.hpp702 virtual void invalidateSubFramebuffer(deUint32 target, int numAttachments, const deUint32* attachments, int x, int y, int width, int height);
703 virtual void invalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments);
/external/deqp/framework/opengl/wrapper/
H A DglwApi.inl983 void glwInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const GLenum *attachments);
984 void glwInvalidateNamedFramebufferData (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments);
985 void glwInvalidateNamedFramebufferSubData (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height);
986 void glwInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height);
H A DglwFunctionTypes.inl323 typedef GLW_APICALL void (GLW_APIENTRY* glInvalidateFramebufferFunc) (GLenum target, GLsizei numAttachments, const GLenum *attachments);
324 typedef GLW_APICALL void (GLW_APIENTRY* glInvalidateNamedFramebufferDataFunc) (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments);
325 typedef GLW_APICALL void (GLW_APIENTRY* glInvalidateNamedFramebufferSubDataFunc) (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height);
326 typedef GLW_APICALL void (GLW_APIENTRY* glInvalidateSubFramebufferFunc) (GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height);
H A DglwImpl.inl2543 void glwInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const GLenum *attachments)
2548 gl->invalidateFramebuffer(target, numAttachments, attachments);
2551 void glwInvalidateNamedFramebufferData (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments)
2556 gl->invalidateNamedFramebufferData(framebuffer, numAttachments, attachments);
2559 void glwInvalidateNamedFramebufferSubData (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height)
2564 gl->invalidateNamedFramebufferSubData(framebuffer, numAttachments, attachments, x, y, width, height);
2567 void glwInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height)
2572 gl->invalidateSubFramebuffer(target, numAttachments, attachments, x, y, width, height);
/external/deqp/framework/platform/null/
H A DtcuNullRenderContextFuncs.inl2578 GLW_APICALL void GLW_APIENTRY glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const GLenum *attachments)
2582 DE_UNREF(attachments);
2586 GLW_APICALL void GLW_APIENTRY glInvalidateNamedFramebufferData (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments)
2590 DE_UNREF(attachments);
2594 GLW_APICALL void GLW_APIENTRY glInvalidateNamedFramebufferSubData (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height)
2598 DE_UNREF(attachments);
2606 GLW_APICALL void GLW_APIENTRY glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height)
2610 DE_UNREF(attachments);
/external/deqp/modules/gles3/functional/
H A Des3fFboInvalidateTests.cpp56 vector<deUint32> attachments; local
59 attachments.push_back(GL_COLOR);
62 attachments.push_back(GL_DEPTH);
65 attachments.push_back(GL_STENCIL);
67 return attachments;
72 vector<deUint32> attachments; local
75 attachments.push_back(GL_COLOR_ATTACHMENT0);
79 attachments.push_back(GL_DEPTH_STENCIL_ATTACHMENT);
81 attachments.push_back(GL_DEPTH_ATTACHMENT);
83 attachments
148 vector<deUint32> attachments = getDefaultFBDiscardAttachments(m_buffers); local
220 vector<deUint32> attachments = getDefaultFBDiscardAttachments(m_buffers); local
314 vector<deUint32> attachments = getDefaultFBDiscardAttachments(m_buffers); local
368 vector<deUint32> attachments = getDefaultFBDiscardAttachments(m_buffers); local
473 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
584 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
718 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
844 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
948 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
1105 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
[all...]
H A Des3fFboStateQueryTests.cpp173 const GLenum attachments[] = local
186 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(attachments); ++ndx)
189 glGetFramebufferAttachmentParameteriv(m_framebufferTarget, attachments[ndx], GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE, &state);
H A Des3fFragmentOutputTests.cpp24 * + non-contiguous attachments in framebuffer
245 // Check that all attachments are supported
570 vector<AttachmentData> attachments (numAttachments);
587 attachments[ndx].format = texFmt;
588 attachments[ndx].readFormat = readFmt;
589 attachments[ndx].referenceFormat = refFmt;
590 attachments[ndx].renderedData.resize(readFmt.getPixelSize()*attachmentW*attachmentH);
591 attachments[ndx].referenceData.resize(refFmt.getPixelSize()*attachmentW*attachmentH);
639 DE_ASSERT(output.location+vecNdx < (int)attachments.size());
640 attachments[outpu
[all...]
H A Des3fNegativeBufferApiTests.cpp1307 deUint32 attachments[2];
1310 attachments[0] = GL_COLOR_ATTACHMENT0;
1311 attachments[1] = GL_COLOR_ATTACHMENT0 + maxColorAttachments;
1323 glInvalidateFramebuffer (-1, 1, &attachments[0]);
1325 glInvalidateFramebuffer (GL_BACK, 1, &attachments[0]);
1329 m_log << TestLog::Section("", "GL_INVALID_OPERATION is generated if attachments contains GL_COLOR_ATTACHMENTm and m is greater than or equal to the value of GL_MAX_COLOR_ATTACHMENTS.");
1330 glInvalidateFramebuffer (GL_FRAMEBUFFER, 1, &attachments[1]);
1341 deUint32 attachments[2];
1344 attachments[0] = GL_COLOR_ATTACHMENT0;
1345 attachments[
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fNegativeBufferApiTests.cpp1336 deUint32 attachments[2]; local
1339 attachments[0] = GL_COLOR_ATTACHMENT0;
1340 attachments[1] = GL_COLOR_ATTACHMENT0 + maxColorAttachments;
1352 ctx.glInvalidateFramebuffer (-1, 1, &attachments[0]);
1354 ctx.glInvalidateFramebuffer (GL_BACK, 1, &attachments[0]);
1358 ctx.beginSection("GL_INVALID_OPERATION is generated if attachments contains GL_COLOR_ATTACHMENTm and m is greater than or equal to the value of GL_MAX_COLOR_ATTACHMENTS.");
1359 ctx.glInvalidateFramebuffer (GL_FRAMEBUFFER, 1, &attachments[1]);
1371 deUint32 attachments[2]; local
1374 attachments[0] = GL_COLOR_ATTACHMENT0;
1375 attachments[
[all...]
/external/deqp/modules/glshared/
H A DglsFboUtil.cpp575 const AttachmentMap& atts = fboConfig.attachments;
649 attachments.erase(attPoint);
651 attachments[attPoint] = att;
753 const string attDesc = cfg.attachments.empty()
754 ? "Framebuffer has no attachments"
755 : "Framebuffer attachments";
757 for (AttachmentMap::const_iterator it = cfg.attachments.begin();
758 it != cfg.attachments.end(); it++)
H A DglsFboUtil.hpp80 //! Configurations for framebuffer objects and their attachments.
314 AttachmentMap attachments; member in struct:deqp::gls::FboUtil::config::Framebuffer
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-javamail.jar ... .MimeMessage msg javax.mail.internet.MimeMultipart attachments String charset org.apache.tools.ant. ...
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
H A DbuildTools.jar ... java.lang.String[]) String aSubject String aMessage String[] attachments java.util.Properties props javax.mail. ...

Completed in 1550 milliseconds

123