/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
D | RenderPassCache.cpp | 124 uint32_t colorAttachmentIndex = 0; in CreateRenderPassForQuery() local 126 auto& attachmentRef = colorAttachmentRefs[colorAttachmentIndex]; in CreateRenderPassForQuery() 127 auto& attachmentDesc = attachmentDescs[colorAttachmentIndex]; in CreateRenderPassForQuery() 129 attachmentRef.attachment = colorAttachmentIndex; in CreateRenderPassForQuery() 140 ++colorAttachmentIndex; in CreateRenderPassForQuery() 143 uint32_t attachmentCount = colorAttachmentIndex; in CreateRenderPassForQuery() 193 for (; resolveAttachmentIndex < colorAttachmentIndex; resolveAttachmentIndex++) { in CreateRenderPassForQuery() 208 subpassDesc.colorAttachmentCount = colorAttachmentIndex; in CreateRenderPassForQuery()
|
/third_party/skia/src/gpu/vk/ |
D | GrVkRenderPass.h | 44 uint32_t colorAttachmentIndex) in GrVkRenderPass() argument 51 , fColorAttachmentIndex(colorAttachmentIndex) {} in GrVkRenderPass() 119 bool colorAttachmentIndex(uint32_t* index) const;
|
D | GrVkResourceProvider.cpp | 160 VkRenderPass renderPass, uint32_t colorAttachmentIndex) { in findCompatibleExternalRenderPass() argument 166 SkASSERT(fExternalRenderPasses[i]->colorAttachmentIndex(&cachedColorIndex)); in findCompatibleExternalRenderPass() 167 SkASSERT(cachedColorIndex == colorAttachmentIndex); in findCompatibleExternalRenderPass() 174 colorAttachmentIndex); in findCompatibleExternalRenderPass()
|
D | GrVkResourceProvider.h | 84 uint32_t colorAttachmentIndex);
|
D | GrVkOpsRenderPass.cpp | 512 SkAssertResult(fCurrentRenderPass->colorAttachmentIndex(&colorIndex)); in onClear() 859 SkAssertResult(fCurrentRenderPass->colorAttachmentIndex(&vkInfo.fColorAttachmentIndex)); in onExecuteDrawable()
|
D | GrVkRenderPass.cpp | 348 bool GrVkRenderPass::colorAttachmentIndex(uint32_t* index) const { in colorAttachmentIndex() function in GrVkRenderPass
|
D | GrVkCommandBuffer.cpp | 230 SkAssertResult(fActiveRenderPass->colorAttachmentIndex(&testIndex)); in clearAttachments()
|
D | GrVkGpu.cpp | 2507 bool result = renderPass->colorAttachmentIndex(&index); in beginRenderPass()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
D | Clear11.cpp | 460 for (auto colorAttachmentIndex : fboData.getEnabledDrawBuffers()) in clearFramebuffer() local 463 colorAttachmentIndex, clearParams.colorMask); in clearFramebuffer() 467 const gl::FramebufferAttachment &attachment = colorAttachments[colorAttachmentIndex]; in clearFramebuffer() 469 if (!clearParams.clearColor[colorAttachmentIndex]) in clearFramebuffer() 488 << colorAttachmentIndex << " has internal format " << attachment.getFormat() in clearFramebuffer()
|
/third_party/skia/third_party/externals/dawn/src/utils/ |
D | WGPUHelpers.cpp | 103 uint32_t colorAttachmentIndex = 0; in ComboRenderPassDescriptor() local 106 cColorAttachments[colorAttachmentIndex].view = colorAttachment; in ComboRenderPassDescriptor() 108 ++colorAttachmentIndex; in ComboRenderPassDescriptor()
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | DrawBuffersTest.cpp | 850 size_t colorAttachmentIndex = texIndex >= 3 ? texIndex - 3 : texIndex; in TEST_P() local 858 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0 + colorAttachmentIndex, in TEST_P() 863 glClearBufferfv(GL_COLOR, colorAttachmentIndex, kClearValue); in TEST_P()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/ |
D | mtl_command_buffer.mm | 1805 uint32_t colorAttachmentIndex) 1807 if (colorAttachmentIndex >= mRenderPassDesc.numColorAttachments) 1813 mRenderPassDesc.colorAttachments[colorAttachmentIndex].storeAction = action; 1863 uint32_t colorAttachmentIndex) 1866 if (mCachedRenderPassDescObjC.get().colorAttachments[colorAttachmentIndex].texture) 1868 mCachedRenderPassDescObjC.get().colorAttachments[colorAttachmentIndex].loadAction = action; 1869 mCachedRenderPassDescObjC.get().colorAttachments[colorAttachmentIndex].clearColor =
|
D | mtl_command_buffer.h | 460 RenderCommandEncoder &setColorStoreAction(MTLStoreAction action, uint32_t colorAttachmentIndex); 476 uint32_t colorAttachmentIndex);
|
/third_party/vk-gl-cts/external/amber/src/src/dawn/ |
D | engine_dawn.cc | 1190 uint32_t colorAttachmentIndex = 0; in CreateRenderPassDescriptor() local 1193 colorAttachmentsInfo[colorAttachmentIndex].attachment = colorAttachment; in CreateRenderPassDescriptor() 1194 colorAttachmentsInfoPtr[colorAttachmentIndex] = in CreateRenderPassDescriptor() 1195 colorAttachmentsInfo[colorAttachmentIndex]; in CreateRenderPassDescriptor() 1197 ++colorAttachmentIndex; in CreateRenderPassDescriptor()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
D | vktRenderPassTests.cpp | 2145 const deUint32 colorAttachmentIndex = colorAttachmentReference.getAttachment(); in beginDynamicRendering() local 2146 …const Attachment& colorAttachmentInfo = renderPassInfo.getAttachments()[colorAttachmentIndex]; in beginDynamicRendering() 2167 attachmentResources[colorAttachmentIndex]->getAttachmentView(), // VkImageView imageView in beginDynamicRendering() 2174 (renderPassClearValues[colorAttachmentIndex] ? in beginDynamicRendering() 2175 *renderPassClearValues[colorAttachmentIndex] : in beginDynamicRendering() 2959 const deUint32 colorAttachmentIndex = colorAttachmentReference.getAttachment(); in pushDynamicRenderingCommands() local 2960 …const Attachment& colorAttachmentInfo = renderPassInfo.getAttachments()[colorAttachmentIndex]; in pushDynamicRenderingCommands() 2980 attachmentResources[colorAttachmentIndex]->getImage(), // image in pushDynamicRenderingCommands() 3005 attachmentResources[colorAttachmentIndex]->getImage(), // image in pushDynamicRenderingCommands() 6120 const deUint32 colorAttachmentIndex = subpassColorAttachments[colorAttachmentNdx]; in addAttachmentAllocationTests() local [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
D | vktRenderPassTests.cpp | 2145 const deUint32 colorAttachmentIndex = colorAttachmentReference.getAttachment(); in beginDynamicRendering() local 2146 …const Attachment& colorAttachmentInfo = renderPassInfo.getAttachments()[colorAttachmentIndex]; in beginDynamicRendering() 2167 attachmentResources[colorAttachmentIndex]->getAttachmentView(), // VkImageView imageView in beginDynamicRendering() 2174 (renderPassClearValues[colorAttachmentIndex] ? in beginDynamicRendering() 2175 *renderPassClearValues[colorAttachmentIndex] : in beginDynamicRendering() 2959 const deUint32 colorAttachmentIndex = colorAttachmentReference.getAttachment(); in pushDynamicRenderingCommands() local 2960 …const Attachment& colorAttachmentInfo = renderPassInfo.getAttachments()[colorAttachmentIndex]; in pushDynamicRenderingCommands() 2980 attachmentResources[colorAttachmentIndex]->getImage(), // image in pushDynamicRenderingCommands() 3005 attachmentResources[colorAttachmentIndex]->getImage(), // image in pushDynamicRenderingCommands() 6120 const deUint32 colorAttachmentIndex = subpassColorAttachments[colorAttachmentNdx]; in addAttachmentAllocationTests() local [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | FramebufferVk.cpp | 2677 vk::PackedAttachmentIndex colorAttachmentIndex(0); in startNewRenderPass() local 2682 colorAttachmentIndex); in startNewRenderPass() 2683 ++colorAttachmentIndex; in startNewRenderPass()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
D | vktPipelineMultisampleSampleLocationsExtTests.cpp | 795 …void addSubpassColorAttachmentWithResolve (const deUint32 colorAttachmentIndex, const VkImageLayou… in addSubpassColorAttachmentWithResolve() argument 798 makeAttachmentReference(colorAttachmentIndex, colorSubpassLayout)); in addSubpassColorAttachmentWithResolve()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineMultisampleSampleLocationsExtTests.cpp | 795 …void addSubpassColorAttachmentWithResolve (const deUint32 colorAttachmentIndex, const VkImageLayou… in addSubpassColorAttachmentWithResolve() argument 798 makeAttachmentReference(colorAttachmentIndex, colorSubpassLayout)); in addSubpassColorAttachmentWithResolve()
|