| 302 | } |
| 303 | |
| 304 | static bool areOverlapping( ImageViewData const & lhs |
| 305 | , ImageViewData const & rhs ) |
| 306 | { |
| 307 | return lhs.image == rhs.image |
| 308 | && areIntersecting( getVirtualRange( lhs.image, lhs.info.viewType, lhs.info.subresourceRange ) |
| 309 | , getVirtualRange( rhs.image, rhs.info.viewType, rhs.info.subresourceRange ) ); |
| 310 | } |
| 311 | |
| 312 | static bool areOverlapping( BufferViewData const & lhs |
| 313 | , BufferViewData const & rhs ) |
no test coverage detected