Home
last modified time | relevance | path

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

1234

/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()
284 SkASSERT(numAttachments == currentAttachment); in Create()
294 createInfo.attachmentCount = numAttachments; in Create()
DGrVkCommandBuffer.cpp215 int numAttachments, in clearAttachments() argument
221 SkASSERT(numAttachments > 0); in clearAttachments()
227 for (int i = 0; i < numAttachments; ++i) { in clearAttachments()
236 numAttachments, in clearAttachments()
/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/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/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/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…
DsglrContext.hpp139 …virtual void invalidateSubFramebuffer(deUint32 target, int numAttachments, const deUint32* attach…
140 …virtual void invalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachme…
/third_party/mesa3d/src/mesa/main/
Dfbobject.c5161 GLsizei numAttachments, in invalidate_framebuffer_storage() argument
5172 if (numAttachments < 0) { in invalidate_framebuffer_storage()
5205 for (i = 0; i < numAttachments; i++) { in invalidate_framebuffer_storage()
5349 GLsizei numAttachments, const GLenum *attachments) in discard_framebuffer() argument
5361 for (int i = 0; i < numAttachments; i++) { in discard_framebuffer()
5380 for (int j = 0; j < numAttachments; j++) { in discard_framebuffer()
5397 _mesa_InvalidateSubFramebuffer_no_error(GLenum target, GLsizei numAttachments, in _mesa_InvalidateSubFramebuffer_no_error() argument
5406 _mesa_InvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, in _mesa_InvalidateSubFramebuffer() argument
5421 invalidate_framebuffer_storage(ctx, fb, numAttachments, attachments, in _mesa_InvalidateSubFramebuffer()
5429 GLsizei numAttachments, in _mesa_InvalidateNamedFramebufferSubData() argument
[all …]
/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()
Dcapture_gles_3_0_autogen.h343 GLsizei numAttachments,
348 GLsizei numAttachments,
927 GLsizei numAttachments,
933 GLsizei numAttachments,
/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/skia/third_party/externals/angle2/src/libANGLE/
DContext_gles_3_0_autogen.h96 void invalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments); \
97 void invalidateSubFramebuffer(GLenum target, GLsizei numAttachments, \
/third_party/vk-gl-cts/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()
821 for (int ndx = 0; ndx < numAttachments; ndx++) in iterate()
875 for (int attachNdx = 0; attachNdx < numAttachments; attachNdx++) in iterate()
/third_party/skia/third_party/externals/angle2/src/libGLESv2/
Dentry_points_gles_3_0_autogen.h176 GLsizei numAttachments,
179 GLsizei numAttachments,
Dentry_points_gles_3_0_autogen.cpp1721 GLsizei numAttachments, in GL_InvalidateFramebuffer() argument
1727 CID(context), GLenumToString(GLenumGroup::FramebufferTarget, target), numAttachments, in GL_InvalidateFramebuffer()
1736 target, numAttachments, attachments)); in GL_InvalidateFramebuffer()
1739 context->invalidateFramebuffer(target, numAttachments, attachments); in GL_InvalidateFramebuffer()
1741 ANGLE_CAPTURE(InvalidateFramebuffer, isCallValid, context, target, numAttachments, in GL_InvalidateFramebuffer()
1751 GLsizei numAttachments, in GL_InvalidateSubFramebuffer() argument
1762 CID(context), GLenumToString(GLenumGroup::DefaultGroup, target), numAttachments, in GL_InvalidateSubFramebuffer()
1771 numAttachments, attachments, x, y, width, height)); in GL_InvalidateSubFramebuffer()
1774 context->invalidateSubFramebuffer(target, numAttachments, attachments, x, y, width, in GL_InvalidateSubFramebuffer()
1777 ANGLE_CAPTURE(InvalidateSubFramebuffer, isCallValid, context, target, numAttachments, in GL_InvalidateSubFramebuffer()
/third_party/skia/third_party/externals/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