Home
last modified time | relevance | path

Searched refs:numAttachments (Results 1 - 25 of 88) sorted by relevance

1234

/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
H A DTracePerfTest.cpp97 GLsizei numAttachments,
100 GLsizei numAttachments,
109 GLsizei numAttachments,
212 GLsizei numAttachments, in InvalidateFramebufferProc()
215 gCurrentTracePerfTest->onReplayInvalidateFramebuffer(target, numAttachments, attachments); in InvalidateFramebufferProc()
219 GLsizei numAttachments, in InvalidateSubFramebufferProc()
226 gCurrentTracePerfTest->onReplayInvalidateSubFramebuffer(target, numAttachments, attachments, x, in InvalidateSubFramebufferProc()
241 GLsizei numAttachments, in DiscardFramebufferEXTProc()
244 gCurrentTracePerfTest->onReplayDiscardFramebufferEXT(target, numAttachments, attachments); in DiscardFramebufferEXTProc()
1721 std::vector<GLenum> ConvertDefaultFramebufferEnums(GLsizei numAttachments, in ConvertDefaultFramebufferEnums() argument
211 InvalidateFramebufferProc(GLenum target, GLsizei numAttachments, const GLenum *attachments) InvalidateFramebufferProc() argument
218 InvalidateSubFramebufferProc(GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height) InvalidateSubFramebufferProc() argument
240 DiscardFramebufferEXTProc(GLenum target, GLsizei numAttachments, const GLenum *attachments) DiscardFramebufferEXTProc() argument
1734 onReplayInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments) onReplayInvalidateFramebuffer() argument
1750 onReplayInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height) onReplayInvalidateSubFramebuffer() argument
1797 onReplayDiscardFramebufferEXT(GLenum target, GLsizei numAttachments, const GLenum *attachments) onReplayDiscardFramebufferEXT() argument
[all...]
/third_party/skia/src/gpu/vk/
H A 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()
H A 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()
H A DGrVkCommandBuffer.cpp215 int numAttachments,
221 SkASSERT(numAttachments > 0);
227 for (int i = 0; i < numAttachments; ++i) {
236 numAttachments,
H A DGrVkCommandBuffer.h80 int numAttachments,
/third_party/vk-gl-cts/framework/opengl/
H A DgluStrUtil.cpp121 detail::EnumPointerFmt getInvalidateAttachmentStr (const deUint32* attachments, int numAttachments) in getInvalidateAttachmentStr() argument
123 return detail::EnumPointerFmt(attachments, (deUint32)numAttachments, getInvalidateAttachmentName); in getInvalidateAttachmentStr()
H A DgluStrUtil.hpp92 detail::EnumPointerFmt getInvalidateAttachmentStr (const deUint32* attachments, int numAttachments);
/third_party/vk-gl-cts/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) 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* attachments) in glInvalidateFramebuffer() argument
371 m_curCtx->invalidateFramebuffer(target, numAttachments, attachments); in glInvalidateFramebuffer()
H A DsglrGLContext.cpp618 void GLContext::invalidateSubFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments, int x, int y, int width, int height) 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+drawOffset.x(), y+drawOffset.y(), width, height); in invalidateSubFramebuffer()
632 void GLContext::invalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments) in invalidateFramebuffer() argument
634 m_wrapper->glInvalidateFramebuffer(target, numAttachments, attachments); in invalidateFramebuffer()
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 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);
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
H A Dcapture_gles_3_0_params.cpp630 GLsizei numAttachments, in CaptureInvalidateFramebuffer_attachments()
634 CaptureMemory(attachments, sizeof(GLenum) * numAttachments, paramCapture); in CaptureInvalidateFramebuffer_attachments()
641 GLsizei numAttachments, in CaptureInvalidateSubFramebuffer_attachments()
649 CaptureMemory(attachments, sizeof(GLenum) * numAttachments, paramCapture); in CaptureInvalidateSubFramebuffer_attachments()
627 CaptureInvalidateFramebuffer_attachments(const State &glState, bool isCallValid, GLenum target, GLsizei numAttachments, const GLenum *attachments, ParamCapture *paramCapture) CaptureInvalidateFramebuffer_attachments() argument
638 CaptureInvalidateSubFramebuffer_attachments(const State &glState, bool isCallValid, GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height, ParamCapture *paramCapture) CaptureInvalidateSubFramebuffer_attachments() argument
H A Dcapture_gles_3_0_autogen.h343 GLsizei numAttachments,
348 GLsizei numAttachments,
927 GLsizei numAttachments,
933 GLsizei numAttachments,
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineFramebufferAttachmentTests.cpp205 const deUint32 numAttachments, in preparePipelineWrapper()
239 for (deUint32 attachmentIdx = 0; attachmentIdx < numAttachments; attachmentIdx++) in preparePipelineWrapper()
249 numAttachments, // deUint32 attachmentCount; in preparePipelineWrapper()
250 numAttachments == 0 ? DE_NULL : &colorBlendAttachmentStates[0], // const VkPipelineColorBlendAttachmentState* pAttachments; in preparePipelineWrapper()
956 deUint32 numAttachments, in makeRenderPassMultiAttachments()
959 vector<VkAttachmentDescription> attachmentDescriptions (numAttachments); in makeRenderPassMultiAttachments()
960 vector<VkAttachmentReference> colorAttachmentReferences (numAttachments); in makeRenderPassMultiAttachments()
962 for (deUint32 i = 0; i < numAttachments; i++) in makeRenderPassMultiAttachments()
992 numAttachments, // deUint32 colorAttachmentCount; in makeRenderPassMultiAttachments()
1005 numAttachments, // deUint3 in makeRenderPassMultiAttachments()
197 preparePipelineWrapper(GraphicsPipelineWrapper& gpw, const VkPipelineLayout pipelineLayout, const VkRenderPass renderPass, const VkShaderModule vertexModule, const VkShaderModule fragmentModule, const IVec3 renderSize, const VkPrimitiveTopology topology, const deUint32 subpass, const deUint32 numAttachments, const bool multisample) preparePipelineWrapper() argument
953 makeRenderPassMultiAttachments(const DeviceInterface& vk, const VkDevice device, const VkFormat colorFormat, deUint32 numAttachments, const bool multisample) makeRenderPassMultiAttachments() argument
[all...]
/third_party/mesa3d/src/mesa/main/
H A Dfbobject.c5161 GLsizei numAttachments, in invalidate_framebuffer_storage()
5169 * "An INVALID_VALUE error is generated if numAttachments, width, or in invalidate_framebuffer_storage()
5172 if (numAttachments < 0) { in invalidate_framebuffer_storage()
5174 "%s(numAttachments < 0)", name); in invalidate_framebuffer_storage()
5205 for (i = 0; i < numAttachments; i++) { in invalidate_framebuffer_storage()
5349 GLsizei numAttachments, const GLenum *attachments) in discard_framebuffer()
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
5159 invalidate_framebuffer_storage(struct gl_context *ctx, struct gl_framebuffer *fb, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height, const char *name) invalidate_framebuffer_storage() argument
5348 discard_framebuffer(struct gl_context *ctx, struct gl_framebuffer *fb, GLsizei numAttachments, const GLenum *attachments) discard_framebuffer() argument
5428 _mesa_InvalidateNamedFramebufferSubData(GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height) _mesa_InvalidateNamedFramebufferSubData() argument
5456 _mesa_InvalidateFramebuffer_no_error(GLenum target, GLsizei numAttachments, const GLenum *attachments) _mesa_InvalidateFramebuffer_no_error() argument
5471 _mesa_InvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments) _mesa_InvalidateFramebuffer() argument
5508 _mesa_InvalidateNamedFramebufferData(GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments) _mesa_InvalidateNamedFramebufferData() argument
5549 _mesa_DiscardFramebufferEXT(GLenum target, GLsizei numAttachments, const GLenum *attachments) _mesa_DiscardFramebufferEXT() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineFramebufferAttachmentTests.cpp208 const deUint32 numAttachments, in preparePipelineWrapper()
242 for (deUint32 attachmentIdx = 0; attachmentIdx < numAttachments; attachmentIdx++) in preparePipelineWrapper()
252 numAttachments, // deUint32 attachmentCount; in preparePipelineWrapper()
253 numAttachments == 0 ? DE_NULL : &colorBlendAttachmentStates[0], // const VkPipelineColorBlendAttachmentState* pAttachments; in preparePipelineWrapper()
964 deUint32 numAttachments, in makeRenderPassMultiAttachments()
967 vector<VkAttachmentDescription> attachmentDescriptions (numAttachments); in makeRenderPassMultiAttachments()
968 vector<VkAttachmentReference> colorAttachmentReferences (numAttachments); in makeRenderPassMultiAttachments()
970 for (deUint32 i = 0; i < numAttachments; i++) in makeRenderPassMultiAttachments()
1000 numAttachments, // deUint32 colorAttachmentCount; in makeRenderPassMultiAttachments()
1013 numAttachments, // deUint3 in makeRenderPassMultiAttachments()
200 preparePipelineWrapper(GraphicsPipelineWrapper& gpw, const PipelineLayoutWrapper& pipelineLayout, const VkRenderPass renderPass, const ShaderWrapper vertexModule, const ShaderWrapper fragmentModule, const IVec3 renderSize, const VkPrimitiveTopology topology, const deUint32 subpass, const deUint32 numAttachments, const bool multisample) preparePipelineWrapper() argument
960 makeRenderPassMultiAttachments(const DeviceInterface& vk, const VkDevice device, const PipelineConstructionType pipelineConstructionType, const VkFormat colorFormat, deUint32 numAttachments, const bool multisample) makeRenderPassMultiAttachments() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DContext_gles_3_0_autogen.h96 void invalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments); \
97 void invalidateSubFramebuffer(GLenum target, GLsizei numAttachments, \
H A DvalidationGL45_autogen.h384 GLsizei numAttachments,
388 GLsizei numAttachments,
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/util/
H A DvktDrawUtil.cpp357 deUint32 numAttachments; in VulkanDrawContext() local
362 numAttachments = (deUint32)(attachmentBindInfos.size()); in VulkanDrawContext()
368 numAttachments, // uint32_t attachmentCount; in VulkanDrawContext()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/util/
H A DvktDrawUtil.cpp357 deUint32 numAttachments; in VulkanDrawContext() local
362 numAttachments = (deUint32)(attachmentBindInfos.size()); in VulkanDrawContext()
368 numAttachments, // uint32_t attachmentCount; in VulkanDrawContext()
/third_party/vk-gl-cts/modules/gles3/functional/
H A 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/
H A Dentry_points_gles_3_0_autogen.cpp1721 GLsizei numAttachments, in GL_InvalidateFramebuffer()
1726 "context = %d, target = %s, numAttachments = %d, attachments = 0x%016" PRIxPTR "", in GL_InvalidateFramebuffer()
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()
1760 "context = %d, target = %s, numAttachments = %d, attachments = 0x%016" PRIxPTR in GL_InvalidateSubFramebuffer()
1762 CID(context), GLenumToString(GLenumGroup::DefaultGroup, target), numAttachments, in GL_InvalidateSubFramebuffer()
1771 numAttachments, attachment in GL_InvalidateSubFramebuffer()
1720 GL_InvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments) GL_InvalidateFramebuffer() argument
1750 GL_InvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height) GL_InvalidateSubFramebuffer() argument
[all...]
H A Dentry_points_gles_3_0_autogen.h176 GLsizei numAttachments,
179 GLsizei numAttachments,
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A DlibGLESv3.cpp3543 void GL_APIENTRY InvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height) in InvalidateSubFramebuffer() argument
3545 TRACE("(GLenum target = 0x%X, GLsizei numAttachments = %d, const GLenum *attachments = %p, GLint x = %d, GLint y = %d, GLsizei width = %d, GLsizei height = %d)", in InvalidateSubFramebuffer()
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 *attachments) in InvalidateFramebuffer() argument
3613 TRACE("(GLenum target = 0x%X, GLsizei numAttachments = %d, const GLenum *attachments = %p)", in InvalidateFramebuffer()
3614 target, numAttachments, attachments); in InvalidateFramebuffer()
3616 InvalidateSubFramebuffer(target, numAttachments, attachments, 0, 0, std::numeric_limits<GLsizei>::max(), std::numeric_limits<GLsizei>::max()); in InvalidateFramebuffer()
/third_party/skia/include/gpu/gl/
H A DGrGLFunctions.h120 using GrGLInvalidateFramebufferFn = GrGLvoid GR_GL_FUNCTION_TYPE(GrGLenum target, GrGLsizei numAttachments, const GrGLenum* attachments);
121 using GrGLInvalidateSubFramebufferFn = GrGLvoid GR_GL_FUNCTION_TYPE(GrGLenum target, GrGLsizei numAttachments, const GrGLenum* attachments, GrGLint x, GrGLint y, GrGLsizei width, GrGLsizei height);
166 using GrGLDiscardFramebufferFn = GrGLvoid GR_GL_FUNCTION_TYPE(GrGLenum target, GrGLsizei numAttachments, const GrGLenum* attachments);

Completed in 38 milliseconds

1234