Home
last modified time | relevance | path

Searched refs:rowPitchBytes (Results 1 – 14 of 14) sorted by relevance

/external/swiftshader/src/WSI/
DWaylandSurfaceKHR.cpp75 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()
DDirectFBSurfaceEXT.cpp60 desc.preallocated[0].pitch = image->getImage()->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, 0); in attachImage()
DXlibSurfaceKHR.cpp65 int bytes_per_line = image->getImage()->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, 0); in attachImage()
DXcbSurfaceKHR.cpp178 int stride = image->getImage()->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, 0); in present()
DMetalSurface.mm180 … bytesPerRow:image->getImage()->rowPitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, 0)];
/external/swiftshader/src/Vulkan/
DVkDescriptorSetLayout.cpp379 … 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()
DVkImage.cpp297 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()
DVkDescriptorSetLayout.hpp64 int rowPitchBytes; member
DVkImageView.cpp296 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()
DVkImageView.hpp87 int rowPitchBytes(VkImageAspectFlagBits aspect, uint32_t mipLevel, Usage usage = RAW) const;
DVkImage.hpp90 int rowPitchBytes(VkImageAspectFlagBits aspect, uint32_t mipLevel) const;
/external/swiftshader/src/Device/
DBlitter.cpp124 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 …]
DRenderer.cpp388 …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/
DSpirvShaderImage.cpp518 … : OFFSET(vk::StorageImageDescriptor, rowPitchBytes)))); in GetTexelAddress()