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

123

/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.cpp188 int numAttachments,
194 SkASSERT(numAttachments > 0);
197 for (int i = 0; i < numAttachments; ++i) {
206 numAttachments,
H A DGrVkCommandBuffer.h87 int numAttachments,
/external/skqp/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.cpp188 int numAttachments,
194 SkASSERT(numAttachments > 0);
197 for (int i = 0; i < numAttachments; ++i) {
206 numAttachments,
H A DGrVkCommandBuffer.h87 int numAttachments,
/external/swiftshader/third_party/PowerVR_SDK/Shell/API/KEGL/
H A DPVRShellAPI.h79 typedef void (GL_APIENTRY * PFNGLDISCARDFRAMEBUFFEREXT)(GLenum target, GLsizei numAttachments, const GLenum *attachments);
H A DPVRShellAPI.cpp797 const GLint numAttachments=3; local
798 GLenum attachments[numAttachments];
/external/mesa3d/src/mesa/main/
H A Dfbobject.h276 _mesa_InvalidateSubFramebuffer(GLenum target, GLsizei numAttachments,
282 GLsizei numAttachments,
288 _mesa_InvalidateFramebuffer(GLenum target, GLsizei numAttachments,
293 GLsizei numAttachments,
297 _mesa_DiscardFramebufferEXT(GLenum target, GLsizei numAttachments,
H A Dfbobject.c4068 GLsizei numAttachments,
4076 * "An INVALID_VALUE error is generated if numAttachments, width, or
4079 if (numAttachments < 0) {
4081 "%s(numAttachments < 0)", name);
4112 for (i = 0; i < numAttachments; i++) {
4196 _mesa_InvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, argument
4211 invalidate_framebuffer_storage(ctx, fb, numAttachments, attachments,
4219 GLsizei numAttachments,
4240 invalidate_framebuffer_storage(ctx, fb, numAttachments, attachments,
4247 _mesa_InvalidateFramebuffer(GLenum target, GLsizei numAttachments, argument
4066 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) argument
4218 _mesa_InvalidateNamedFramebufferSubData(GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height) argument
4282 _mesa_InvalidateNamedFramebufferData(GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments) argument
4323 _mesa_DiscardFramebufferEXT(GLenum target, GLsizei numAttachments, const GLenum *attachments) argument
[all...]
/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);
H A DgluStrUtil.hpp92 detail::EnumPointerFmt getInvalidateAttachmentStr (const deUint32* attachments, int 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);
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);
H A DsglrContextWrapper.hpp293 void glInvalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments);
294 void glInvalidateSubFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments, int x, int y, int width, int height);
/external/deqp/modules/gles3/functional/
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/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
H A DPVRTgles2Ext.h88 typedef void (GL_APIENTRY * PFNGLDISCARDFRAMEBUFFEREXT)(GLenum target, GLsizei numAttachments, const GLenum *attachments);
/external/deqp/external/vulkancts/modules/vulkan/
H A DvktDrawUtil.cpp527 deUint32 numAttachments; local
532 numAttachments = (deUint32)(attachmentBindInfos.size());
538 numAttachments, // uint32_t attachmentCount;
/external/skia/include/gpu/gl/
H A DGrGLFunctions.h112 typedef GrGLvoid (* GrGLInvalidateFramebufferProc)(GrGLenum target, GrGLsizei numAttachments, const GrGLenum *attachments);
113 typedef GrGLvoid (* GrGLInvalidateSubFramebufferProc)(GrGLenum target, GrGLsizei numAttachments, const GrGLenum *attachments, GrGLint x, GrGLint y, GrGLsizei width, GrGLsizei height);
157 typedef GrGLvoid (* GrGLDiscardFramebufferProc)(GrGLenum target, GrGLsizei numAttachments, const GrGLenum* attachments);
/external/swiftshader/src/OpenGL/libGLESv2/
H A DlibGLESv3.cpp3516 GL_APICALL void GL_APIENTRY glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments) argument
3518 TRACE("(GLenum target = 0x%X, GLsizei numAttachments = %d, const GLenum *attachments = %p)",
3519 target, numAttachments, attachments);
3521 glInvalidateSubFramebuffer(target, numAttachments, attachments, 0, 0, std::numeric_limits<GLsizei>::max(), std::numeric_limits<GLsizei>::max());
3524 GL_APICALL void GL_APIENTRY glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height) argument
3526 TRACE("(GLenum target = 0x%X, GLsizei numAttachments = %d, const GLenum *attachments = %p, GLint x = %d, GLint y = %d, GLsizei width = %d, GLsizei height = %d)",
3527 target, numAttachments, attachments, x, y, width, height);
3533 if(numAttachments < 0 || width < 0 || height < 0)
3554 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
151 virtual GrGLvoid discardFramebuffer(GrGLenum target, GrGLsizei numAttachments, const GrGLenum* attachments) {} argument

Completed in 472 milliseconds

123