Lines Matching refs:subresourceWidth
528 const auto subresourceWidth = level.dimensions.width;
531 const auto numPixels = subresourceWidth * subresourceHeight * subresourceDepth;
564 << " and dimensions " << subresourceWidth << "x" << subresourceHeight << "x" << subresourceDepth;
569 if (subresourceHeight > 1u && subresourceLayout.rowPitch < pixelSize * subresourceWidth)
577 << " bytes in pixel size and width " << subresourceWidth;
589 << " bytes in pixel size and layer dimensions " << subresourceWidth << "x" << subresourceHeight;
594 if (subresourceDepth > 1u && m_params.imageType == VK_IMAGE_TYPE_3D && subresourceLayout.depthPitch < pixelSize * subresourceWidth * subresourceHeight)
602 << " and dimensions " << subresourceWidth << "x" << subresourceHeight << "x" << subresourceDepth;
614 for (deUint32 x = 0u; x < subresourceWidth; ++x)
618 const auto bufferPixelOffset = (z * subresourceWidth * subresourceHeight + y * subresourceWidth + x) * pixelSize;