Searched defs:numAttachments (Results 1 - 12 of 12) sorted by relevance

/external/skia/src/gpu/vk/
H A DGrVkFramebuffer.cpp25 int numAttachments = 1; local
27 attachments[numAttachments++] = stencilAttachment->imageView();
36 createInfo.attachmentCount = numAttachments;
H A DGrVkRenderPass.cpp55 uint32_t numAttachments = fAttachmentsDescriptor.fAttachmentCount; local
57 SkTArray<VkAttachmentDescription> attachments(numAttachments);
58 attachments.reset(numAttachments);
59 memset(attachments.begin(), 0, numAttachments * sizeof(VkAttachmentDescription));
121 SkASSERT(numAttachments == currentAttachment);
129 createInfo.attachmentCount = numAttachments;
H A DGrVkCommandBuffer.cpp149 int numAttachments,
155 SkASSERT(numAttachments > 0);
158 for (int i = 0; i < numAttachments; ++i) {
167 numAttachments,
148 clearAttachments(const GrVkGpu* gpu, int numAttachments, const VkClearAttachment* attachments, int numRects, const VkClearRect* clearRects) const argument
/external/deqp/framework/opengl/
H A DgluStrUtil.cpp121 detail::EnumPointerFmt getInvalidateAttachmentStr (const deUint32* attachments, int numAttachments) argument
123 return detail::EnumPointerFmt(attachments, (deUint32)numAttachments, getInvalidateAttachmentName);
/external/swiftshader/third_party/PowerVR_SDK/Shell/API/KEGL/
H A DPVRShellAPI.cpp797 const GLint numAttachments=3; local
798 GLenum attachments[numAttachments];
/external/deqp/framework/opengl/simplereference/
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 DsglrGLContext.cpp618 void GLContext::invalidateSubFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments, int x, int y, int width, int height) argument
624 << glu::getFramebufferTargetStr(target) << ", " << numAttachments << ", "
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);
/external/deqp/modules/gles3/functional/
H A Des3fFboInvalidateTests.cpp1197 InvalidateFboTargetCase (Context& context, const char* name, const char* description, deUint32 boundTarget, deUint32 invalidateTarget, const deUint32* invalidateAttachments, int numAttachments) argument
1201 , m_invalidateAttachments (invalidateAttachments, invalidateAttachments+numAttachments)
H A Des3fFragmentOutputTests.cpp567 const int numAttachments = (int)m_fboSpec.size(); local
569 vector<deUint32> drawBuffers (numAttachments);
570 vector<AttachmentData> attachments (numAttachments);
573 for (int ndx = 0; ndx < numAttachments; ndx++)
820 for (int ndx = 0; ndx < numAttachments; ndx++)
874 for (int attachNdx = 0; attachNdx < numAttachments; attachNdx++)
/external/mesa3d/src/mesa/main/
H A Dfbobject.c3138 invalidate_framebuffer_storage(GLenum target, GLsizei numAttachments, argument
3154 if (numAttachments < 0) {
3156 "%s(numAttachments < 0)", name);
3175 for (i = 0; i < numAttachments; i++) {
3248 _mesa_InvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, argument
3252 invalidate_framebuffer_storage(target, numAttachments, attachments,
3258 _mesa_InvalidateFramebuffer(GLenum target, GLsizei numAttachments, argument
3266 * sizei numAttachments,
3273 invalidate_framebuffer_storage(target, numAttachments, attachments,
/external/swiftshader/src/OpenGL/libGLESv2/
H A DlibGLESv3.cpp3751 GL_APICALL void GL_APIENTRY glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments) argument
3753 TRACE("(GLenum target = 0x%X, GLsizei numAttachments = %d, const GLenum *attachments = %p)",
3754 target, numAttachments, attachments);
3756 glInvalidateSubFramebuffer(target, numAttachments, attachments, 0, 0, std::numeric_limits<GLsizei>::max(), std::numeric_limits<GLsizei>::max());
3759 GL_APICALL void GL_APIENTRY glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height) argument
3761 TRACE("(GLenum target = 0x%X, GLsizei numAttachments = %d, const GLenum *attachments = %p, GLint x = %d, GLint y = %d, GLsizei width = %d, GLsizei height = %d)",
3762 target, numAttachments, attachments, x, y, width, height);
3768 if(numAttachments < 0 || width < 0 || height < 0)
3788 for(int i = 0; i < numAttachments; i++)
/external/skia/src/gpu/gl/
H A DGrGLTestInterface.h110 virtual GrGLvoid invalidateFramebuffer(GrGLenum target, GrGLsizei numAttachments, const GrGLenum *attachments) {} argument
111 virtual GrGLvoid invalidateSubFramebuffer(GrGLenum target, GrGLsizei numAttachments, const GrGLenum *attachments, GrGLint x, GrGLint y, GrGLsizei width, GrGLsizei height) {} argument
150 virtual GrGLvoid discardFramebuffer(GrGLenum target, GrGLsizei numAttachments, const GrGLenum* attachments) {} argument

Completed in 794 milliseconds