Home
last modified time | relevance | path

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

/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiImageClearingTests.cpp189 inline bool isInClearRange (const UVec4& clearCoords, const deUint32 x, const deUint32 y, deUint32 … in isInClearRange() argument
204 if (clearCoords == UVec4()) in isInClearRange()
210 return !((x < clearCoords[0] && y < clearCoords[1]) || in isInClearRange()
211 (x < clearCoords[0] && y >= clearCoords[3]) || in isInClearRange()
212 (x >= clearCoords[2] && y < clearCoords[1]) || in isInClearRange()
213 (x >= clearCoords[2] && y >= clearCoords[3])); in isInClearRange()
517 … verifyResultImage (const std::string& successMessage, const UVec4& clearCoords = UVec4()) cons…
1156 …TestInstance::verifyResultImage (const std::string& successMessage, const UVec4& clearCoords) const in verifyResultImage()
1158 DE_ASSERT((clearCoords == UVec4()) || m_params.imageExtent.depth == 1u); in verifyResultImage()
1173 …if (isInClearRange(clearCoords, x, y, arrayLayer, m_params.imageViewLayerRange, m_params.clearLaye… in verifyResultImage()
[all …]