Skip to content
Merged
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
12 changes: 6 additions & 6 deletions src/CoreGraphics/CGColorSpace.cs
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ public bool IsWideGamutRgb {
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst")]
[DllImport (Constants.CoreGraphicsLibrary)]
static extern byte CGColorSpaceSupportsOutput (/* CGColorSpaceRef */ IntPtr space);
static extern byte CGColorSpaceSupportsOutput (/* CGColorSpaceRef cg_nullable */ IntPtr space);

/// <summary>Gets a Boolean value that tells whether the color space supports output.</summary>
/// <value>To be added.</value>
Expand Down Expand Up @@ -732,7 +732,7 @@ public bool IsHdr {
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
[DllImport (Constants.CoreGraphicsLibrary)]
static extern byte CGColorSpaceUsesExtendedRange (/* CGColorSpaceRef */ IntPtr space);
static extern byte CGColorSpaceUsesExtendedRange (/* CGColorSpaceRef gc_nullable */ IntPtr space);

[SupportedOSPlatform ("ios14.0")]
[SupportedOSPlatform ("tvos14.0")]
Expand Down Expand Up @@ -762,7 +762,7 @@ public bool UsesExtendedRange {
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
[DllImport (Constants.CoreGraphicsLibrary)]
static extern IntPtr CGColorSpaceCreateLinearized (/* CGColorSpaceRef */ IntPtr space);
static extern IntPtr CGColorSpaceCreateLinearized (/* CGColorSpaceRef gc_nullable */ IntPtr space);

[SupportedOSPlatform ("ios14.1")]
[SupportedOSPlatform ("tvos14.2")]
Expand All @@ -775,7 +775,7 @@ public bool UsesExtendedRange {
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
[DllImport (Constants.CoreGraphicsLibrary)]
static extern IntPtr CGColorSpaceCreateExtended (/* CGColorSpaceRef */ IntPtr space);
static extern IntPtr CGColorSpaceCreateExtended (/* CGColorSpaceRef gc_nullable */ IntPtr space);

[SupportedOSPlatform ("ios14.1")]
[SupportedOSPlatform ("tvos14.2")]
Expand All @@ -788,7 +788,7 @@ public bool UsesExtendedRange {
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("maccatalyst")]
[DllImport (Constants.CoreGraphicsLibrary)]
static extern IntPtr CGColorSpaceCreateExtendedLinearized (/* CGColorSpaceRef */ IntPtr space);
static extern IntPtr CGColorSpaceCreateExtendedLinearized (/* CGColorSpaceRef gc_nullable */ IntPtr space);

[SupportedOSPlatform ("ios14.1")]
[SupportedOSPlatform ("tvos14.2")]
Expand All @@ -801,7 +801,7 @@ public bool UsesExtendedRange {
[SupportedOSPlatform ("macos13.0")]
[SupportedOSPlatform ("maccatalyst16.0")]
[DllImport (Constants.CoreGraphicsLibrary)]
static extern IntPtr CGColorSpaceCreateCopyWithStandardRange (/* CGColorSpaceRef */ IntPtr s);
static extern IntPtr CGColorSpaceCreateCopyWithStandardRange (/* CGColorSpaceRef cg_nullable */ IntPtr s);

[SupportedOSPlatform ("ios16.0")]
[SupportedOSPlatform ("tvos16.0")]
Expand Down
Loading