Lines Matching refs:notSupportedStream
85 std::ostringstream notSupportedStream;
87 notSupportedStream << "Image type (" << getImageTypeName(imageType) << ") with size (" << imageSize.x() << ", " << imageSize.y() << ", " << imageSize.z() << ") not supported by device" << std::endl;
89 const std::string notSupportedString = notSupportedStream.str();
104 std::ostringstream notSupportedStream;
106 notSupportedStream << "Device does not support image format " << format << " for feature flags " << featureFlags << std::endl;
108 const std::string notSupportedString = notSupportedStream.str();
125 std::ostringstream notSupportedStream;
127 notSupportedStream << "Image extent ("
137 const std::string notSupportedString = notSupportedStream.str();
144 std::ostringstream notSupportedStream;
146 notSupportedStream << "Image layers count of " << imageInfo.arrayLayers << " exceeds allowed maximum which is " << imageFormatProps.maxArrayLayers;
148 const std::string notSupportedString = notSupportedStream.str();
155 std::ostringstream notSupportedStream;
157 notSupportedStream << "Samples count of " << imageInfo.samples << " not supported for image";
159 const std::string notSupportedString = notSupportedStream.str();