/external/skia/src/gpu/vk/ |
D | GrVkRenderPass.cpp | 18 void setup_vk_attachment_description(VkAttachmentDescription* attachment, in setup_vk_attachment_description() argument 21 attachment->flags = 0; in setup_vk_attachment_description() 22 attachment->format = desc.fFormat; in setup_vk_attachment_description() 23 SkAssertResult(GrSampleCountToVkSampleCount(desc.fSamples, &attachment->samples)); in setup_vk_attachment_description() 26 attachment->loadOp = desc.fLoadStoreOps.fLoadOp; in setup_vk_attachment_description() 27 attachment->storeOp = desc.fLoadStoreOps.fStoreOp; in setup_vk_attachment_description() 28 attachment->stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; in setup_vk_attachment_description() 29 attachment->stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE; in setup_vk_attachment_description() 32 attachment->loadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; in setup_vk_attachment_description() 33 attachment->storeOp = VK_ATTACHMENT_STORE_OP_DONT_CARE; in setup_vk_attachment_description() [all …]
|
D | GrVkGpuCommandBuffer.cpp | 271 VkClearAttachment attachment; in onClearStencilClip() local 272 attachment.aspectMask = VK_IMAGE_ASPECT_STENCIL_BIT; in onClearStencilClip() 273 attachment.colorAttachment = 0; // this value shouldn't matter in onClearStencilClip() 274 attachment.clearValue.depthStencil = vkStencilColor; in onClearStencilClip() 276 cbInfo.currentCmdBuf()->clearAttachments(fGpu, 1, &attachment, 1, &clearRect); in onClearStencilClip() 355 VkClearAttachment attachment; in onClear() local 356 attachment.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT; in onClear() 357 attachment.colorAttachment = colorIndex; in onClear() 358 attachment.clearValue.color = vkColor; in onClear() 360 cbInfo.currentCmdBuf()->clearAttachments(fGpu, 1, &attachment, 1, &clearRect); in onClear()
|
/external/libmojo/ipc/ |
D | ipc_message_attachment_set.cc | 32 for (const scoped_refptr<MessageAttachment>& attachment : attachments) { in count_attachments_of_type() local 33 if (attachment->GetType() == type) in count_attachments_of_type() 85 scoped_refptr<MessageAttachment> attachment, in AddAttachment() argument 89 if (attachment->GetType() == MessageAttachment::TYPE_PLATFORM_FILE && in AddAttachment() 96 switch (attachment->GetType()) { in AddAttachment() 99 attachments_.push_back(attachment); in AddAttachment() 105 static_cast<BrokerableAttachment*>(attachment.get()); in AddAttachment() 116 scoped_refptr<MessageAttachment> attachment) { in AddAttachment() argument 119 return AddAttachment(attachment, &index, &brokerable); in AddAttachment() 188 const scoped_refptr<BrokerableAttachment>& attachment) { in ReplacePlaceholderWithAttachment() argument [all …]
|
D | ipc_mojo_message_helper.cc | 27 scoped_refptr<base::Pickle::Attachment> attachment; in ReadMessagePipeFrom() local 28 if (!message->ReadAttachment(iter, &attachment)) { in ReadMessagePipeFrom() 34 static_cast<MessageAttachment*>(attachment.get())->GetType(); in ReadMessagePipeFrom() 41 static_cast<internal::MojoHandleAttachment*>(attachment.get()) in ReadMessagePipeFrom()
|
D | ipc_message.cc | 238 scoped_refptr<PlaceholderBrokerableAttachment> attachment( in AddPlaceholderBrokerableAttachmentWithId() local 240 return attachment_set()->AddAttachment(attachment); in AddPlaceholderBrokerableAttachmentWithId() 244 scoped_refptr<base::Pickle::Attachment> attachment) { in WriteAttachment() argument 248 make_scoped_refptr(static_cast<MessageAttachment*>(attachment.get())), in WriteAttachment() 272 scoped_refptr<base::Pickle::Attachment>* attachment) const { in ReadAttachment() 285 *attachment = brokerable in ReadAttachment() 289 return nullptr != attachment->get(); in ReadAttachment()
|
D | ipc_platform_file_attachment_posix.cc | 32 scoped_refptr<MessageAttachment> attachment) { in GetPlatformFile() argument 33 DCHECK_EQ(attachment->GetType(), MessageAttachment::TYPE_PLATFORM_FILE); in GetPlatformFile() 34 return static_cast<PlatformFileAttachment*>(attachment.get())->file(); in GetPlatformFile()
|
D | ipc_message_attachment_set.h | 67 bool AddAttachment(scoped_refptr<MessageAttachment> attachment, 72 bool AddAttachment(scoped_refptr<MessageAttachment> attachment); 99 const scoped_refptr<BrokerableAttachment>& attachment);
|
D | attachment_broker.h | 77 const scoped_refptr<BrokerableAttachment>& attachment, 83 scoped_refptr<BrokerableAttachment>* attachment); 122 const scoped_refptr<BrokerableAttachment>& attachment);
|
/external/deqp/modules/gles3/functional/ |
D | es3fFboStateQueryTests.cpp | 46 …::TestContext& testCtx, glu::CallLogWrapper& gl, GLenum target, GLenum attachment, int r, int g, i… in checkAttachmentComponentSizeAtLeast() argument 66 gl.glGetFramebufferAttachmentParameteriv(target, attachment, paramNames[ndx], &state); in checkAttachmentComponentSizeAtLeast() 83 …::TestContext& testCtx, glu::CallLogWrapper& gl, GLenum target, GLenum attachment, int r, int g, i… in checkAttachmentComponentSizeExactly() argument 103 gl.glGetFramebufferAttachmentParameteriv(target, attachment, paramNames[ndx], &state); in checkAttachmentComponentSizeExactly() 144 …::TestContext& testCtx, glu::CallLogWrapper& gl, GLenum target, GLenum attachment, GLenum pname, G… in checkAttachmentParam() argument 147 gl.glGetFramebufferAttachmentParameteriv(target, attachment, pname, &state); in checkAttachmentParam() 619 bool attachmentExists (GLenum attachment) in attachmentExists() argument 622 …glGetFramebufferAttachmentParameteriv(GL_FRAMEBUFFER, attachment, GL_FRAMEBUFFER_ATTACHMENT_OBJECT… in attachmentExists() 637 …virtual void testColorAttachment (GLenum internalFormat, GLenum attachment, GLint bitsR, GLint bit… 639 …virtual void testDepthAttachment (GLenum internalFormat, GLenum attachment, GLint bitsD, GLint bit… [all …]
|
/external/mesa3d/src/mesa/main/ |
D | fbobject.h | 71 GLenum attachment); 111 GLenum attachment, struct gl_renderbuffer *rb); 174 _mesa_FramebufferTexture1DEXT(GLenum target, GLenum attachment, 178 _mesa_FramebufferTexture2DEXT(GLenum target, GLenum attachment, 182 _mesa_FramebufferTexture3DEXT(GLenum target, GLenum attachment, 187 _mesa_FramebufferTextureLayerEXT(GLenum target, GLenum attachment, 191 _mesa_FramebufferRenderbufferEXT(GLenum target, GLenum attachment, 196 _mesa_GetFramebufferAttachmentParameterivEXT(GLenum target, GLenum attachment, 209 _mesa_FramebufferTextureARB(GLenum target, GLenum attachment, 213 _mesa_FramebufferTextureFaceARB(GLenum target, GLenum attachment,
|
D | fbobject.c | 190 GLenum attachment) in _mesa_get_attachment() argument 196 switch (attachment) { in _mesa_get_attachment() 217 i = attachment - GL_COLOR_ATTACHMENT0_EXT; in _mesa_get_attachment() 243 GLenum attachment) in _mesa_get_fb0_attachment() argument 247 switch (attachment) { in _mesa_get_fb0_attachment() 390 GLenum attachment, struct gl_renderbuffer *rb) in _mesa_framebuffer_renderbuffer() argument 396 att = _mesa_get_attachment(ctx, fb, attachment); in _mesa_framebuffer_renderbuffer() 400 if (attachment == GL_DEPTH_STENCIL_ATTACHMENT) { in _mesa_framebuffer_renderbuffer() 1996 GLenum attachment, GLenum textarget, GLuint texture, in framebuffer_texture() argument 2086 att = _mesa_get_attachment(ctx, fb, attachment); in framebuffer_texture() [all …]
|
/external/mesa3d/src/gallium/state_trackers/xorg/ |
D | xorg_dri2.c | 81 switch (buffer->attachment) { in dri2_do_create_buffer() 83 if (buffer->attachment != DRI2BufferFakeFrontLeft || in dri2_do_create_buffer() 112 if (buffer->attachment == DRI2BufferDepth) { in dri2_do_create_buffer() 200 dri2_create_buffer(DrawablePtr pDraw, unsigned int attachment, unsigned int format) in dri2_create_buffer() argument 214 buffer->attachment = attachment; in dri2_create_buffer() 257 buffers[i].attachment = attachments[i]; in dri2_create_buffers() 313 src_draw = (pSrcBuffer->attachment == DRI2BufferFrontLeft) ? pDraw : in dri2_copy_region() 315 dst_draw = (pDestBuffer->attachment == DRI2BufferFrontLeft) ? pDraw : in dri2_copy_region() 337 if (pSrcBuffer->attachment == DRI2BufferFrontLeft && in dri2_copy_region() 338 pDestBuffer->attachment == DRI2BufferFakeFrontLeft) { in dri2_copy_region() [all …]
|
/external/skia/src/gpu/gl/ |
D | GrGLCreateNullInterface.cpp | 160 void setAttachment(GrGLenum attachmentPoint, const FramebufferAttachment* attachment) { in setAttachment() argument 166 fAttachments[(int)AttachmentPoint::kStencil].reset(SkRef(attachment)); in setAttachment() 169 fAttachments[(int)AttachmentPoint::kDepth].reset(SkRef(attachment)); in setAttachment() 172 fAttachments[(int)AttachmentPoint::kColor].reset(SkRef(attachment)); in setAttachment() 178 for (auto& attachment : fAttachments) { in notifyAttachmentDeleteWhileBound() local 179 if (attachment.get() == deleted) { in notifyAttachmentDeleteWhileBound() 180 attachment.reset(nullptr); in notifyAttachmentDeleteWhileBound() 187 for (auto& attachment : fAttachments) { in numSamples() local 188 if (!attachment) { in numSamples() 192 GrAlwaysAssert(attachment->numSamples() == numSamples); in numSamples() [all …]
|
/external/toolchain-utils/cros_utils/ |
D | email_sender.py | 69 for attachment in attachments: 71 part.set_payload(attachment.content) 74 "attachment; filename=\"%s\"" % attachment.name) 125 for attachment in attachments: 126 if '<html>' in attachment.content: 131 os.write(fd, attachment.content)
|
/external/deqp/doc/testspecs/GLES3/ |
D | functional.fbo.completeness.txt | 33 + Zero-sized attachment 49 creation and attachment functions. The test passes if the return value is 59 attachment points and attach a single texture or renderbuffer with that format 60 at that attachment point. 70 attachment points. The expected status values are as follows: 75 * If there is both a depth and a stencil attachment and one is a texture and 81 image. When a test case has both a depth and a stencil attachment and either 86 The "size.*" test cases check that attachment sizes are treated correctly. 89 zero-sized renderbuffer attachment. The glCheckFramebufferStatus call is
|
D | functional.lifetime.txt | 111 its attachment, and the existence of the deleted attachment object is 117 array for drawing) first before the attachment is deleted, and then 118 again after deleting the attachment and creating a new object of the 119 attachment type. If the results differ, the new object erroneously 124 after deleting the attachment and then again after creating a new object 125 of the attachment type. If the writing affected the new object state, it 126 erroneously shared state with the deleted attachment.
|
/external/deqp/doc/testspecs/GLES2/ |
D | functional.lifetime.txt | 97 its attachment, and the existence of the deleted attachment object is 100 attachment objects must become unused, even though their state still 105 drawing) before the attachment is deleted, and then after deleting the 106 attachment and creating a new object of the attachment type. If the 111 (by drawing to a framebuffer) after deleting the attachment and creating 112 a new object of the attachment type. If the writing affected the new 113 object state, it erroneously shared state with the deleted attachment.
|
D | functional.fbo.completeness.txt | 34 + Zero-sized attachment 48 creation and attachment functions. The test passes if the return value is 58 attachment points and attach a single texture or renderbuffer with that format 59 at that attachment point. 69 least one combination of attachment formats is supported. 97 attachment points. The expected status values are as follows: 114 case has both a depth and a stencil attachment, they are always distinct 123 The "size.*" test cases check that attachment sizes are treated correctly. 126 zero-sized renderbuffer attachment. The glCheckFramebufferStatus call is
|
/external/llvm/test/Verifier/ |
D | metadata-function-dbg.ll | 3 ; CHECK: function declaration may not have a !dbg attachment 10 ; CHECK: function must have a single !dbg attachment 16 ; CHECK: function !dbg attachment must be a subprogram
|
D | llvm.dbg.intrinsic-dbg-attachment.ll | 9 ; CHECK-LABEL: llvm.dbg.value intrinsic requires a !dbg attachment 18 ; CHECK-LABEL: llvm.dbg.declare intrinsic requires a !dbg attachment 29 ; CHECK-LABEL: mismatched subprogram between llvm.dbg.value variable and !dbg attachment 43 ; CHECK-LABEL: mismatched subprogram between llvm.dbg.declare variable and !dbg attachment
|
D | metadata-function-prof.ll | 3 ; CHECK: function declaration may not have a !prof attachment 10 ; CHECK: function must have a single !prof attachment
|
/external/deqp/external/vulkancts/modules/vulkan/ |
D | vktRenderPassTests.cpp | 479 AttachmentReference (deUint32 attachment, in AttachmentReference() argument 481 : m_attachment (attachment) in AttachmentReference() 736 const Attachment& attachment = attachments[attachmentNdx]; in logRenderPassInfo() local 738 log << TestLog::Message << "Format: " << attachment.getFormat() << TestLog::EndMessage; in logRenderPassInfo() 739 log << TestLog::Message << "Samples: " << attachment.getSamples() << TestLog::EndMessage; in logRenderPassInfo() 741 log << TestLog::Message << "LoadOp: " << attachment.getLoadOp() << TestLog::EndMessage; in logRenderPassInfo() 742 log << TestLog::Message << "StoreOp: " << attachment.getStoreOp() << TestLog::EndMessage; in logRenderPassInfo() 744 …log << TestLog::Message << "StencilLoadOp: " << attachment.getStencilLoadOp() << TestLog::EndMessa… in logRenderPassInfo() 745 …log << TestLog::Message << "StencilStoreOp: " << attachment.getStencilStoreOp() << TestLog::EndMes… in logRenderPassInfo() 747 …log << TestLog::Message << "InitialLayout: " << attachment.getInitialLayout() << TestLog::EndMessa… in logRenderPassInfo() [all …]
|
/external/skia/tools/gpu/gl/debug/ |
D | DebugGLTestContext.cpp | 405 GrGLenum attachment, in framebufferRenderbuffer() argument 410 GrAlwaysAssert(GR_GL_COLOR_ATTACHMENT0 == attachment || in framebufferRenderbuffer() 411 GR_GL_DEPTH_ATTACHMENT == attachment || in framebufferRenderbuffer() 412 GR_GL_STENCIL_ATTACHMENT == attachment); in framebufferRenderbuffer() 424 switch (attachment) { in framebufferRenderbuffer() 441 GrGLvoid namedFramebufferRenderbuffer(GrGLuint framebuffer, GrGLenum attachment, in namedFramebufferRenderbuffer() argument 448 GrGLvoid framebufferTexture2D(GrGLenum target, GrGLenum attachment, GrGLenum textarget, in framebufferTexture2D() argument 452 GrAlwaysAssert(GR_GL_COLOR_ATTACHMENT0 == attachment || in framebufferTexture2D() 453 GR_GL_DEPTH_ATTACHMENT == attachment || in framebufferTexture2D() 454 GR_GL_STENCIL_ATTACHMENT == attachment); in framebufferTexture2D() [all …]
|
/external/deqp/framework/opengl/simplereference/ |
D | sglrContextWrapper.cpp | 189 void ContextWrapper::glFramebufferTexture2D (deUint32 target, deUint32 attachment, deUint32 textarg… in glFramebufferTexture2D() argument 191 m_curCtx->framebufferTexture2D(target, attachment, textarget, texture, level); in glFramebufferTexture2D() 194 void ContextWrapper::glFramebufferTextureLayer (deUint32 target, deUint32 attachment, deUint32 text… in glFramebufferTextureLayer() argument 196 m_curCtx->framebufferTextureLayer(target, attachment, texture, level, layer); in glFramebufferTextureLayer() 199 void ContextWrapper::glFramebufferRenderbuffer (deUint32 target, deUint32 attachment, deUint32 rend… in glFramebufferRenderbuffer() argument 201 m_curCtx->framebufferRenderbuffer(target, attachment, renderbuffertarget, renderbuffer); in glFramebufferRenderbuffer() 209 void ContextWrapper::glGetFramebufferAttachmentParameteriv (deUint32 target, deUint32 attachment, d… in glGetFramebufferAttachmentParameteriv() argument 211 m_curCtx->getFramebufferAttachmentParameteriv(target, attachment, pname, params); in glGetFramebufferAttachmentParameteriv()
|
/external/curl/tests/data/ |
D | test1315 | 62 Content-Disposition: attachment; filename="test1315.txt" 68 Content-Disposition: attachment; filename="test1315.txt" 74 Content-Disposition: attachment; filename="test1315.txt"
|