Home
last modified time | relevance | path

Searched refs:numAttachments (Results 1 – 25 of 89) sorted by relevance

1234

/external/angle/src/tests/perf_tests/
DTracePerfTest.cpp81 GLsizei numAttachments,
84 GLsizei numAttachments,
93 GLsizei numAttachments,
163 GLsizei numAttachments, in InvalidateFramebufferProc() argument
166 gCurrentTracePerfTest->onReplayInvalidateFramebuffer(target, numAttachments, attachments); in InvalidateFramebufferProc()
170 GLsizei numAttachments, in InvalidateSubFramebufferProc() argument
177 gCurrentTracePerfTest->onReplayInvalidateSubFramebuffer(target, numAttachments, attachments, x, in InvalidateSubFramebufferProc()
192 GLsizei numAttachments, in DiscardFramebufferEXTProc() argument
195 gCurrentTracePerfTest->onReplayDiscardFramebufferEXT(target, numAttachments, attachments); in DiscardFramebufferEXTProc()
1446 std::vector<GLenum> ConvertDefaultFramebufferEnums(GLsizei numAttachments, in ConvertDefaultFramebufferEnums() argument
[all …]
/external/skqp/src/gpu/vk/
DGrVkFramebuffer.cpp25 int numAttachments = 1; in Create() local
27 attachments[numAttachments++] = stencilAttachment->imageView(); in Create()
36 createInfo.attachmentCount = numAttachments; in Create()
DGrVkRenderPass.cpp55 uint32_t numAttachments = fAttachmentsDescriptor.fAttachmentCount; in init() local
57 SkTArray<VkAttachmentDescription> attachments(numAttachments); in init()
58 attachments.reset(numAttachments); in init()
59 memset(attachments.begin(), 0, numAttachments * sizeof(VkAttachmentDescription)); in init()
121 SkASSERT(numAttachments == currentAttachment); in init()
129 createInfo.attachmentCount = numAttachments; in init()
DGrVkCommandBuffer.cpp216 int numAttachments, in clearAttachments() argument
222 SkASSERT(numAttachments > 0); in clearAttachments()
225 for (int i = 0; i < numAttachments; ++i) { in clearAttachments()
234 numAttachments, in clearAttachments()
/external/skia/src/gpu/vk/
DGrVkFramebuffer.cpp30 int numAttachments = 1; in Make() local
32 attachments[numAttachments++] = resolveAttachment->framebufferView()->imageView(); in Make()
35 attachments[numAttachments++] = stencilAttachment->framebufferView()->imageView(); in Make()
44 createInfo.attachmentCount = numAttachments; in Make()
DGrVkRenderPass.cpp123 uint32_t numAttachments = attachmentsDescriptor->fAttachmentCount; in Create() local
125 SkTArray<VkAttachmentDescription> attachments(numAttachments); in Create()
126 attachments.reset(numAttachments); in Create()
127 memset(attachments.begin(), 0, numAttachments * sizeof(VkAttachmentDescription)); in Create()
282 SkASSERT(numAttachments == currentAttachment); in Create()
292 createInfo.attachmentCount = numAttachments; in Create()
DGrVkCommandBuffer.cpp216 int numAttachments, in clearAttachments() argument
222 SkASSERT(numAttachments > 0); in clearAttachments()
228 for (int i = 0; i < numAttachments; ++i) { in clearAttachments()
237 numAttachments, in clearAttachments()
/external/mesa3d/src/mesa/main/
Dfbobject.h392 _mesa_InvalidateSubFramebuffer_no_error(GLenum target, GLsizei numAttachments,
397 _mesa_InvalidateSubFramebuffer(GLenum target, GLsizei numAttachments,
403 GLsizei numAttachments,
408 _mesa_InvalidateFramebuffer_no_error(GLenum target, GLsizei numAttachments,
412 _mesa_InvalidateFramebuffer(GLenum target, GLsizei numAttachments,
417 GLsizei numAttachments,
421 _mesa_DiscardFramebufferEXT(GLenum target, GLsizei numAttachments,
Dfbobject.c4978 GLsizei numAttachments, in invalidate_framebuffer_storage() argument
4989 if (numAttachments < 0) { in invalidate_framebuffer_storage()
5022 for (i = 0; i < numAttachments; i++) { in invalidate_framebuffer_storage()
5147 GLsizei numAttachments, const GLenum *attachments) in discard_framebuffer() argument
5152 for (int i = 0; i < numAttachments; i++) { in discard_framebuffer()
5171 for (int j = 0; j < numAttachments; j++) { in discard_framebuffer()
5188 _mesa_InvalidateSubFramebuffer_no_error(GLenum target, GLsizei numAttachments, in _mesa_InvalidateSubFramebuffer_no_error() argument
5197 _mesa_InvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, in _mesa_InvalidateSubFramebuffer() argument
5212 invalidate_framebuffer_storage(ctx, fb, numAttachments, attachments, in _mesa_InvalidateSubFramebuffer()
5220 GLsizei numAttachments, in _mesa_InvalidateNamedFramebufferSubData() argument
[all …]
/external/deqp/framework/opengl/
DgluStrUtil.cpp121 detail::EnumPointerFmt getInvalidateAttachmentStr (const deUint32* attachments, int numAttachments) in getInvalidateAttachmentStr() argument
123 return detail::EnumPointerFmt(attachments, (deUint32)numAttachments, getInvalidateAttachmentName); in getInvalidateAttachmentStr()
DgluStrUtil.hpp92 …EnumPointerFmt getInvalidateAttachmentStr (const deUint32* attachments, int numAttachments);
/external/deqp/framework/opengl/simplereference/
DsglrContextWrapper.cpp364 void ContextWrapper::glInvalidateSubFramebuffer (deUint32 target, int numAttachments, const deUint3… in glInvalidateSubFramebuffer() argument
366 m_curCtx->invalidateSubFramebuffer(target, numAttachments, attachments, x, y, width, height); in glInvalidateSubFramebuffer()
369 void ContextWrapper::glInvalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* … in glInvalidateFramebuffer() argument
371 m_curCtx->invalidateFramebuffer(target, numAttachments, attachments); in glInvalidateFramebuffer()
DsglrGLContext.cpp618 void GLContext::invalidateSubFramebuffer (deUint32 target, int numAttachments, const deUint32* atta… in invalidateSubFramebuffer() argument
624 << glu::getFramebufferTargetStr(target) << ", " << numAttachments << ", " in invalidateSubFramebuffer()
625 << glu::getInvalidateAttachmentStr(attachments, numAttachments) << ", " in invalidateSubFramebuffer()
629 …m_context.getFunctions().invalidateSubFramebuffer(target, numAttachments, attachments, x+drawOffse… in invalidateSubFramebuffer()
632 void GLContext::invalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachm… in invalidateFramebuffer() argument
634 m_wrapper->glInvalidateFramebuffer(target, numAttachments, attachments); in invalidateFramebuffer()
DsglrGLContext.hpp151 …virtual void invalidateSubFramebuffer(deUint32 target, int numAttachments, const deUint32* at…
152 …virtual void invalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* atta…
DsglrContext.hpp139 …virtual void invalidateSubFramebuffer(deUint32 target, int numAttachments, const deUint32* attach…
140 …virtual void invalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachme…
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineFramebufferAttachmentTests.cpp198 const deUint32 numAttachments, in makeGraphicsPipeline() argument
232 for (deUint32 attachmentIdx = 0; attachmentIdx < numAttachments; attachmentIdx++) in makeGraphicsPipeline()
242 numAttachments, // deUint32 attachmentCount; in makeGraphicsPipeline()
243numAttachments == 0 ? DE_NULL : &colorBlendAttachmentStates[0], // const VkPipelineColorBlendAttac… in makeGraphicsPipeline()
948 deUint32 numAttachments, in makeRenderPassDifferentAttachmentSizes() argument
951 vector<VkAttachmentDescription> attachmentDescriptions (numAttachments); in makeRenderPassDifferentAttachmentSizes()
952 vector<VkAttachmentReference> colorAttachmentReferences (numAttachments); in makeRenderPassDifferentAttachmentSizes()
954 for (deUint32 i = 0; i < numAttachments; i++) in makeRenderPassDifferentAttachmentSizes()
984 numAttachments, // deUint32 colorAttachmentCount; in makeRenderPassDifferentAttachmentSizes()
997 numAttachments, // deUint32 attachmentCount; in makeRenderPassDifferentAttachmentSizes()
/external/deqp/external/vulkancts/modules/vulkan/util/
DvktDrawUtil.cpp357 deUint32 numAttachments; in VulkanDrawContext() local
362 numAttachments = (deUint32)(attachmentBindInfos.size()); in VulkanDrawContext()
368 numAttachments, // uint32_t attachmentCount; in VulkanDrawContext()
/external/angle/src/libANGLE/capture/
Dcapture_gles_3_0_params.cpp629 GLsizei numAttachments, in CaptureInvalidateFramebuffer_attachments() argument
633 CaptureMemory(attachments, sizeof(GLenum) * numAttachments, paramCapture); in CaptureInvalidateFramebuffer_attachments()
640 GLsizei numAttachments, in CaptureInvalidateSubFramebuffer_attachments() argument
Dcapture_gles_3_0_autogen.h343 GLsizei numAttachments,
348 GLsizei numAttachments,
927 GLsizei numAttachments,
933 GLsizei numAttachments,
/external/angle/src/libANGLE/
DContext_gles_3_0_autogen.h96 void invalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments); \
97 void invalidateSubFramebuffer(GLenum target, GLsizei numAttachments, \
DvalidationES3_autogen.h253 GLsizei numAttachments,
257 GLsizei numAttachments,
/external/deqp/modules/gles3/functional/
Des3fFragmentOutputTests.cpp567 const int numAttachments = (int)m_fboSpec.size(); in iterate() local
569 vector<deUint32> drawBuffers (numAttachments); in iterate()
570 vector<AttachmentData> attachments (numAttachments); in iterate()
573 for (int ndx = 0; ndx < numAttachments; ndx++) in iterate()
820 for (int ndx = 0; ndx < numAttachments; ndx++) in iterate()
874 for (int attachNdx = 0; attachNdx < numAttachments; attachNdx++) in iterate()
/external/angle/src/libGLESv2/
Dentry_points_gles_3_0_autogen.h176 GLsizei numAttachments,
179 GLsizei numAttachments,
Dentry_points_gles_3_0_autogen.cpp1646 GLsizei numAttachments, in GL_InvalidateFramebuffer() argument
1652 CID(context), GLenumToString(GLenumGroup::FramebufferTarget, target), numAttachments, in GL_InvalidateFramebuffer()
1660 ValidateInvalidateFramebuffer(context, target, numAttachments, attachments)); in GL_InvalidateFramebuffer()
1663 context->invalidateFramebuffer(target, numAttachments, attachments); in GL_InvalidateFramebuffer()
1665 ANGLE_CAPTURE(InvalidateFramebuffer, isCallValid, context, target, numAttachments, in GL_InvalidateFramebuffer()
1675 GLsizei numAttachments, in GL_InvalidateSubFramebuffer() argument
1686 CID(context), GLenumToString(GLenumGroup::DefaultGroup, target), numAttachments, in GL_InvalidateSubFramebuffer()
1693 ValidateInvalidateSubFramebuffer(context, target, numAttachments, in GL_InvalidateSubFramebuffer()
1697 context->invalidateSubFramebuffer(target, numAttachments, attachments, x, y, width, in GL_InvalidateSubFramebuffer()
1700 ANGLE_CAPTURE(InvalidateSubFramebuffer, isCallValid, context, target, numAttachments, in GL_InvalidateSubFramebuffer()
/external/swiftshader/src/OpenGL/libGLESv2/
DlibGLESv3.cpp3543 void GL_APIENTRY InvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *atta… in InvalidateSubFramebuffer() argument
3546 target, numAttachments, attachments, x, y, width, height); in InvalidateSubFramebuffer()
3552 if(numAttachments < 0 || width < 0 || height < 0) in InvalidateSubFramebuffer()
3573 for(int i = 0; i < numAttachments; i++) in InvalidateSubFramebuffer()
3611 void GL_APIENTRY InvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachm… in InvalidateFramebuffer() argument
3614 target, numAttachments, attachments); in InvalidateFramebuffer()
3616 …InvalidateSubFramebuffer(target, numAttachments, attachments, 0, 0, std::numeric_limits<GLsizei>::… in InvalidateFramebuffer()

1234