Home
last modified time | relevance | path

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

123456

/third_party/flutter/skia/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.cpp238 int numAttachments, in clearAttachments() argument
244 SkASSERT(numAttachments > 0); in clearAttachments()
250 for (int i = 0; i < numAttachments; ++i) { in clearAttachments()
259 numAttachments, in clearAttachments()
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
DTracePerfTest.cpp97 GLsizei numAttachments,
100 GLsizei numAttachments,
109 GLsizei numAttachments,
212 GLsizei numAttachments, in InvalidateFramebufferProc() argument
215 gCurrentTracePerfTest->onReplayInvalidateFramebuffer(target, numAttachments, attachments); in InvalidateFramebufferProc()
219 GLsizei numAttachments, in InvalidateSubFramebufferProc() argument
226 gCurrentTracePerfTest->onReplayInvalidateSubFramebuffer(target, numAttachments, attachments, x, in InvalidateSubFramebufferProc()
241 GLsizei numAttachments, in DiscardFramebufferEXTProc() argument
244 gCurrentTracePerfTest->onReplayDiscardFramebufferEXT(target, numAttachments, attachments); in DiscardFramebufferEXTProc()
1721 std::vector<GLenum> ConvertDefaultFramebufferEnums(GLsizei numAttachments, in ConvertDefaultFramebufferEnums() argument
[all …]
/third_party/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.cpp211 int numAttachments, in clearAttachments() argument
217 SkASSERT(numAttachments > 0); in clearAttachments()
223 for (int i = 0; i < numAttachments; ++i) { in clearAttachments()
232 numAttachments, in clearAttachments()
/third_party/mesa3d/src/mesa/main/
Dfbobject.h389 _mesa_InvalidateSubFramebuffer_no_error(GLenum target, GLsizei numAttachments,
394 _mesa_InvalidateSubFramebuffer(GLenum target, GLsizei numAttachments,
400 GLsizei numAttachments,
405 _mesa_InvalidateFramebuffer_no_error(GLenum target, GLsizei numAttachments,
409 _mesa_InvalidateFramebuffer(GLenum target, GLsizei numAttachments,
414 GLsizei numAttachments,
418 _mesa_DiscardFramebufferEXT(GLenum target, GLsizei numAttachments,
Dfbobject.c5024 GLsizei numAttachments, in invalidate_framebuffer_storage() argument
5035 if (numAttachments < 0) { in invalidate_framebuffer_storage()
5068 for (i = 0; i < numAttachments; i++) { in invalidate_framebuffer_storage()
5193 GLsizei numAttachments, const GLenum *attachments) in discard_framebuffer() argument
5198 for (int i = 0; i < numAttachments; i++) { in discard_framebuffer()
5217 for (int j = 0; j < numAttachments; j++) { in discard_framebuffer()
5234 _mesa_InvalidateSubFramebuffer_no_error(GLenum target, GLsizei numAttachments, in _mesa_InvalidateSubFramebuffer_no_error() argument
5243 _mesa_InvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, in _mesa_InvalidateSubFramebuffer() argument
5258 invalidate_framebuffer_storage(ctx, fb, numAttachments, attachments, in _mesa_InvalidateSubFramebuffer()
5266 GLsizei numAttachments, in _mesa_InvalidateNamedFramebufferSubData() argument
[all …]
/third_party/vk-gl-cts/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);
/third_party/vk-gl-cts/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…
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_discard_framebuffer.txt111 sizei numAttachments,
135 sizei numAttachments,
139 a bound framebuffer object. <numAttachments> indicates how many
168 with <numAttachments> less than zero.
/third_party/openGLES/extensions/EXT/
DEXT_discard_framebuffer.txt111 sizei numAttachments,
135 sizei numAttachments,
139 a bound framebuffer object. <numAttachments> indicates how many
168 with <numAttachments> less than zero.
/third_party/flutter/skia/third_party/externals/angle2/src/libGL/
Dentry_points_gl_4_3_autogen.cpp677 GLsizei numAttachments, in InvalidateFramebuffer() argument
683 GLenumToString(GLenumGroup::FramebufferTarget, target), numAttachments, in InvalidateFramebuffer()
692 ValidateInvalidateFramebuffer(context, target, numAttachments, attachments)); in InvalidateFramebuffer()
695 context->invalidateFramebuffer(target, numAttachments, attachments); in InvalidateFramebuffer()
697 ANGLE_CAPTURE(InvalidateFramebuffer, isCallValid, context, target, numAttachments, in InvalidateFramebuffer()
703 GLsizei numAttachments, in InvalidateSubFramebuffer() argument
713 GLenumToString(GLenumGroup::DefaultGroup, target), numAttachments, (uintptr_t)attachments, in InvalidateSubFramebuffer()
721 ValidateInvalidateSubFramebuffer(context, target, numAttachments, in InvalidateSubFramebuffer()
725 context->invalidateSubFramebuffer(target, numAttachments, attachments, x, y, width, in InvalidateSubFramebuffer()
728 ANGLE_CAPTURE(InvalidateSubFramebuffer, isCallValid, context, target, numAttachments, in InvalidateSubFramebuffer()
Dentry_points_gl_4_3_autogen.h117 GLsizei numAttachments,
120 GLsizei numAttachments,
/third_party/vk-gl-cts/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()
/third_party/openGLES/extensions/ARB/
DARB_invalidate_subdata.txt114 sizei numAttachments,
117 sizei numAttachments,
215 sizei numAttachments,
220 a bound framebuffer object. <numAttachments> indicates how many
221 attachments are supplied in the <attachments> list. If <numAttachments>
255 sizei numAttachments,
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_invalidate_subdata.txt104 sizei numAttachments,
107 sizei numAttachments,
205 sizei numAttachments,
210 a bound framebuffer object. <numAttachments> indicates how many
211 attachments are supplied in the <attachments> list. If <numAttachments>
245 sizei numAttachments,
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
Dcapture_gles_3_0_params.cpp630 GLsizei numAttachments, in CaptureInvalidateFramebuffer_attachments() argument
634 CaptureMemory(attachments, sizeof(GLenum) * numAttachments, paramCapture); in CaptureInvalidateFramebuffer_attachments()
641 GLsizei numAttachments, in CaptureInvalidateSubFramebuffer_attachments() argument
649 CaptureMemory(attachments, sizeof(GLenum) * numAttachments, paramCapture); in CaptureInvalidateSubFramebuffer_attachments()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/glprototypes/
Dfbo.h132 GLsizei numAttachments,
/third_party/vk-gl-cts/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()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
DContext_gles_3_0_autogen.h93 void invalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments); \
94 void invalidateSubFramebuffer(GLenum target, GLsizei numAttachments, \

123456