/external/swiftshader/src/WSI/ |
D | WaylandSurfaceKHR.cpp | 75 int stride = image->getImage()->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, 0); in attachImage() 92 int stride = image->getImage()->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, 0); in detachImage() 107 int bufferRowPitch = image->getImage()->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, 0); in present()
|
D | DirectFBSurfaceEXT.cpp | 60 desc.preallocated[0].pitch = image->getImage()->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, 0); in attachImage()
|
D | XlibSurfaceKHR.cpp | 65 int bytes_per_line = image->getImage()->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, 0); in attachImage()
|
D | XcbSurfaceKHR.cpp | 178 int stride = image->getImage()->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, 0); in present()
|
D | MetalSurface.mm | 180 … bytesPerRow:image->getImage()->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, 0)];
|
/external/swiftshader/src/Vulkan/ |
D | VkDescriptorSetLayout.cpp | 379 … int pitchP0 = imageView->rowPitchBytes(VK_IMAGE_ASPECT_PLANE_0_BIT, level, ImageView::SAMPLING) / in WriteDescriptorSet() 386 … int pitchP1 = imageView->rowPitchBytes(VK_IMAGE_ASPECT_PLANE_1_BIT, level, ImageView::SAMPLING) / in WriteDescriptorSet() 421 int pitchP = imageView->rowPitchBytes(aspect, level, ImageView::SAMPLING) / bytes; in WriteDescriptorSet() 446 storageImage[i].rowPitchBytes = imageView->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, 0); in WriteDescriptorSet() 458 storageImage[i].stencilRowPitchBytes = imageView->rowPitchBytes(VK_IMAGE_ASPECT_STENCIL_BIT, 0); in WriteDescriptorSet() 477 storageImage[i].rowPitchBytes = 0; in WriteDescriptorSet()
|
D | VkImage.cpp | 297 int imageRowBytes = rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, 0); in prepareForExternalUseANDROID() 343 pLayout->rowPitch = rowPitchBytes(aspect, pSubresource->mipLevel); in getSubresourceLayout() 392 int srcRowPitch = rowPitchBytes(srcAspect, region.srcSubresource.mipLevel); in copyTo() 394 int dstRowPitch = dstImage->rowPitchBytes(dstAspect, region.dstSubresource.mipLevel); in copyTo() 554 int imageRowPitchBytes = rowPitchBytes(aspect, region.imageSubresource.mipLevel); in copy() 743 (adjustedOffset.y + border) * rowPitchBytes(aspect, subresource.mipLevel) + in texelOffsetBytesInStorage() 788 int Image::rowPitchBytes(VkImageAspectFlagBits aspect, uint32_t mipLevel) const in rowPitchBytes() function in vk::Image 1328 int pitchB = decompressedImage->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, subresource.mipLevel); in decodeETC2() 1365 int pitchB = decompressedImage->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, subresource.mipLevel); in decodeBC() 1399 int pitchB = decompressedImage->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, subresource.mipLevel); in decodeASTC()
|
D | VkDescriptorSetLayout.hpp | 64 int rowPitchBytes; member
|
D | VkImageView.cpp | 296 int ImageView::rowPitchBytes(VkImageAspectFlagBits aspect, uint32_t mipLevel, Usage usage) const in rowPitchBytes() function in vk::ImageView 298 return getImage(usage)->rowPitchBytes(aspect, subresourceRange.baseMipLevel + mipLevel); in rowPitchBytes()
|
D | VkImageView.hpp | 87 int rowPitchBytes(VkImageAspectFlagBits aspect, uint32_t mipLevel, Usage usage = RAW) const;
|
D | VkImage.hpp | 90 int rowPitchBytes(VkImageAspectFlagBits aspect, uint32_t mipLevel) const;
|
/external/swiftshader/src/Device/ |
D | Blitter.cpp | 124 dest->rowPitchBytes(aspect, subres.mipLevel), // dPitchB in clear() 258 int rowPitchBytes = dest->rowPitchBytes(aspect, subres.mipLevel); in fastClear() local 289 d += rowPitchBytes; in fastClear() 297 d += rowPitchBytes; in fastClear() 305 d += rowPitchBytes; in fastClear() 1822 src->rowPitchBytes(srcAspect, region.srcSubresource.mipLevel), // sPitchB in blit() 1823 dst->rowPitchBytes(dstAspect, region.dstSubresource.mipLevel), // dPitchB in blit() 1895 int pitch = src->rowPitchBytes(VK_IMAGE_ASPECT_DEPTH_BIT, 0); in resolveDepth() 1926 int pitch = src->rowPitchBytes(VK_IMAGE_ASPECT_STENCIL_BIT, 0); in resolveStencil() 2061 int pitch = src->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, region.srcSubresource.mipLevel); in fastResolve() [all …]
|
D | Renderer.cpp | 388 …data->colorPitchB[index] = attachments.renderTarget[index]->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BI… in draw() 399 data->depthPitchB = attachments.depthBuffer->rowPitchBytes(VK_IMAGE_ASPECT_DEPTH_BIT, 0); in draw() 406 data->stencilPitchB = attachments.stencilBuffer->rowPitchBytes(VK_IMAGE_ASPECT_STENCIL_BIT, 0); in draw()
|
/external/swiftshader/src/Pipeline/ |
D | SpirvShaderImage.cpp | 518 … : OFFSET(vk::StorageImageDescriptor, rowPitchBytes)))); in GetTexelAddress()
|