Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ private import ImageIO
/// - [`CIImage`](https://developer.apple.com/documentation/coreimage/ciimage)
/// - [`NSImage`](https://developer.apple.com/documentation/appkit/nsimage)
/// (macOS)
/// - [`UIImage`](https://developer.apple.com/documentation/uikit/uiimage)
/// (iOS, watchOS, tvOS, visionOS, and Mac Catalyst)
///
/// You do not generally need to add your own conformances to this protocol. If
/// you have an image in another format that needs to be attached to a test,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ extension Attachment {
/// - [`CIImage`](https://developer.apple.com/documentation/coreimage/ciimage)
/// - [`NSImage`](https://developer.apple.com/documentation/appkit/nsimage)
/// (macOS)
/// - [`UIImage`](https://developer.apple.com/documentation/uikit/uiimage)
/// (iOS, watchOS, tvOS, visionOS, and Mac Catalyst)
///
/// The testing library uses the image format specified by `imageFormat`. Pass
/// `nil` to let the testing library decide which image format to use. If you
Expand Down Expand Up @@ -72,6 +74,8 @@ extension Attachment {
/// - [`CIImage`](https://developer.apple.com/documentation/coreimage/ciimage)
/// - [`NSImage`](https://developer.apple.com/documentation/appkit/nsimage)
/// (macOS)
/// - [`UIImage`](https://developer.apple.com/documentation/uikit/uiimage)
/// (iOS, watchOS, tvOS, visionOS, and Mac Catalyst)
///
/// The testing library uses the image format specified by `imageFormat`. Pass
/// `nil` to let the testing library decide which image format to use. If you
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ import UniformTypeIdentifiers
/// - [`CIImage`](https://developer.apple.com/documentation/coreimage/ciimage)
/// - [`NSImage`](https://developer.apple.com/documentation/appkit/nsimage)
/// (macOS)
/// - [`UIImage`](https://developer.apple.com/documentation/uikit/uiimage)
/// (iOS, watchOS, tvOS, visionOS, and Mac Catalyst)
@_spi(Experimental)
@available(_uttypesAPI, *)
public struct _AttachableImageWrapper<Image>: Sendable where Image: AttachableAsCGImage {
Expand Down