Lines Matching refs:subresourceHeight
529 const auto subresourceHeight = level.dimensions.height;
531 const auto numPixels = subresourceWidth * subresourceHeight * subresourceDepth;
564 << " and dimensions " << subresourceWidth << "x" << subresourceHeight << "x" << subresourceDepth;
568 // Note: if subresourceHeight is <= 1u, rowPitch can be zero.
569 if (subresourceHeight > 1u && subresourceLayout.rowPitch < pixelSize * 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;
615 for (deUint32 y = 0u; y < subresourceHeight; ++y)
618 const auto bufferPixelOffset = (z * subresourceWidth * subresourceHeight + y * subresourceWidth + x) * pixelSize;