Home | History | Annotate | Download | only in layers

Lines Matching refs:img1

516 inline bool operator==(const ImageSubresourcePair &img1, const ImageSubresourcePair &img2) {
517 if (img1.image != img2.image || img1.hasSubresource != img2.hasSubresource) return false;
518 return !img1.hasSubresource ||
519 (img1.subresource.aspectMask == img2.subresource.aspectMask && img1.subresource.mipLevel == img2.subresource.mipLevel &&
520 img1.subresource.arrayLayer == img2.subresource.arrayLayer);