/external/skia/src/gpu/vk/ |
D | GrVkRenderPass.cpp | 55 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()
|
D | GrVkFramebuffer.cpp | 25 int numAttachments = 1; in Create() local 27 attachments[numAttachments++] = stencilAttachment->imageView(); in Create() 36 createInfo.attachmentCount = numAttachments; in Create()
|
D | GrVkCommandBuffer.cpp | 188 int numAttachments, in clearAttachments() argument 194 SkASSERT(numAttachments > 0); in clearAttachments() 197 for (int i = 0; i < numAttachments; ++i) { in clearAttachments() 206 numAttachments, in clearAttachments()
|
D | GrVkCommandBuffer.h | 87 int numAttachments,
|
/external/mesa3d/src/mesa/main/ |
D | fbobject.h | 276 _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,
|
D | fbobject.c | 4068 GLsizei numAttachments, in invalidate_framebuffer_storage() argument 4079 if (numAttachments < 0) { in invalidate_framebuffer_storage() 4112 for (i = 0; i < numAttachments; i++) { in invalidate_framebuffer_storage() 4196 _mesa_InvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, in _mesa_InvalidateSubFramebuffer() argument 4211 invalidate_framebuffer_storage(ctx, fb, numAttachments, attachments, in _mesa_InvalidateSubFramebuffer() 4219 GLsizei numAttachments, in _mesa_InvalidateNamedFramebufferSubData() argument 4240 invalidate_framebuffer_storage(ctx, fb, numAttachments, attachments, in _mesa_InvalidateNamedFramebufferSubData() 4247 _mesa_InvalidateFramebuffer(GLenum target, GLsizei numAttachments, in _mesa_InvalidateFramebuffer() argument 4273 invalidate_framebuffer_storage(ctx, fb, numAttachments, attachments, in _mesa_InvalidateFramebuffer() 4283 GLsizei numAttachments, in _mesa_InvalidateNamedFramebufferData() argument [all …]
|
/external/deqp/framework/opengl/ |
D | gluStrUtil.cpp | 121 detail::EnumPointerFmt getInvalidateAttachmentStr (const deUint32* attachments, int numAttachments) in getInvalidateAttachmentStr() argument 123 return detail::EnumPointerFmt(attachments, (deUint32)numAttachments, getInvalidateAttachmentName); in getInvalidateAttachmentStr()
|
D | gluStrUtil.hpp | 92 …EnumPointerFmt getInvalidateAttachmentStr (const deUint32* attachments, int numAttachments);
|
/external/deqp/framework/opengl/simplereference/ |
D | sglrContextWrapper.cpp | 364 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()
|
D | sglrGLContext.cpp | 618 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()
|
D | sglrGLContext.hpp | 151 …virtual void invalidateSubFramebuffer(deUint32 target, int numAttachments, const deUint32* at… 152 …virtual void invalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* atta…
|
D | sglrContext.hpp | 139 …virtual void invalidateSubFramebuffer(deUint32 target, int numAttachments, const deUint32* attach… 140 …virtual void invalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachme…
|
D | sglrContextWrapper.hpp | 293 …void glInvalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachmen… 294 …void glInvalidateSubFramebuffer (deUint32 target, int numAttachments, const deUint32* attachm…
|
D | sglrReferenceContext.hpp | 702 …virtual void invalidateSubFramebuffer(deUint32 target, int numAttachments, const deUint32* attac… 703 …virtual void invalidateFramebuffer (deUint32 target, int numAttachments, const deUint32* attachm…
|
/external/swiftshader/third_party/PowerVR_SDK/Shell/API/KEGL/ |
D | PVRShellAPI.h | 79 …typedef void (GL_APIENTRY * PFNGLDISCARDFRAMEBUFFEREXT)(GLenum target, GLsizei numAttachments, con…
|
D | PVRShellAPI.cpp | 797 const GLint numAttachments=3; in ApiRenderComplete() local 798 GLenum attachments[numAttachments]; in ApiRenderComplete()
|
/external/deqp/external/vulkancts/modules/vulkan/ |
D | vktDrawUtil.cpp | 527 deUint32 numAttachments; in VulkanDrawContext() local 532 numAttachments = (deUint32)(attachmentBindInfos.size()); in VulkanDrawContext() 538 numAttachments, // uint32_t attachmentCount; in VulkanDrawContext()
|
/external/deqp/modules/gles3/functional/ |
D | es3fFragmentOutputTests.cpp | 567 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/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/ |
D | PVRTgles2Ext.h | 88 …typedef void (GL_APIENTRY * PFNGLDISCARDFRAMEBUFFEREXT)(GLenum target, GLsizei numAttachments, con…
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | libGLESv3.cpp | 3665 GL_APICALL void GL_APIENTRY glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GL… in glInvalidateFramebuffer() argument 3668 target, numAttachments, attachments); in glInvalidateFramebuffer() 3670 …glInvalidateSubFramebuffer(target, numAttachments, attachments, 0, 0, std::numeric_limits<GLsizei>… in glInvalidateFramebuffer() 3673 GL_APICALL void GL_APIENTRY glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const… in glInvalidateSubFramebuffer() argument 3676 target, numAttachments, attachments, x, y, width, height); in glInvalidateSubFramebuffer() 3682 if(numAttachments < 0 || width < 0 || height < 0) in glInvalidateSubFramebuffer() 3702 for(int i = 0; i < numAttachments; i++) in glInvalidateSubFramebuffer()
|
/external/skia/src/gpu/gl/ |
D | GrGLTestInterface.h | 110 …virtual GrGLvoid invalidateFramebuffer(GrGLenum target, GrGLsizei numAttachments, const GrGLenum … in invalidateFramebuffer() argument 111 …virtual GrGLvoid invalidateSubFramebuffer(GrGLenum target, GrGLsizei numAttachments, const GrGLenu… in invalidateSubFramebuffer() argument 151 …virtual GrGLvoid discardFramebuffer(GrGLenum target, GrGLsizei numAttachments, const GrGLenum* att… in discardFramebuffer() argument
|
/external/skia/include/gpu/gl/ |
D | GrGLFunctions.h | 113 …TION_TYPE* GrGLInvalidateFramebufferProc)(GrGLenum target, GrGLsizei numAttachments, const GrGLen… 114 …N_TYPE* GrGLInvalidateSubFramebufferProc)(GrGLenum target, GrGLsizei numAttachments, const GrGLenu… 158 …UNCTION_TYPE* GrGLDiscardFramebufferProc)(GrGLenum target, GrGLsizei numAttachments, const GrGLenu…
|
/external/deqp/doc/ |
D | GLES3 Negative API Functions.txt | 162 o glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const GLenum* attachments); 163 o glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, const GLenum* attachments, GL…
|
/external/mesa3d/include/GLES3/ |
D | gl3.h | 1090 typedef void (GL_APIENTRYP PFNGLINVALIDATEFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, … 1091 …APIENTRYP PFNGLINVALIDATESUBFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, const GLenum … 1194 GL_APICALL void GL_APIENTRY glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const G… 1195 GL_APICALL void GL_APIENTRY glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, cons…
|
/external/swiftshader/include/GLES3/ |
D | gl3.h | 1092 typedef void (GL_APIENTRYP PFNGLINVALIDATEFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, … 1093 …APIENTRYP PFNGLINVALIDATESUBFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, const GLenum … 1197 GL_APICALL void GL_APIENTRY glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const G… 1198 GL_APICALL void GL_APIENTRY glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, cons…
|