| 235 | //********************************************************************************************* |
| 236 | |
| 237 | void checkUndefinedInput( std::string const & stepName |
| 238 | , Attachment const & attach |
| 239 | , ImageViewId const & view |
| 240 | , ImageLayout currentLayout ) |
| 241 | { |
| 242 | if ( !attach.isTransitionImageView() && attach.isInput() && currentLayout == ImageLayout::eUndefined ) |
| 243 | { |
| 244 | auto passName = attach.pass ? attach.pass->getFullName() : attach.source.front().pass->getFullName(); |
| 245 | Logger::logWarning( stepName + " - [" + passName + "]: Input view [" + view.data->name + "] is currently in undefined layout" ); |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | void convert( SemaphoreWaitArray const & toWait |
| 250 | , std::vector< VkSemaphore > & semaphores |
no test coverage detected