Skip to content
Closed
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
4 changes: 2 additions & 2 deletions src/metalperformanceshaders.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1253,7 +1253,7 @@ interface MPSCnnLogSoftMax {
[iOS (10,0)][TV (10,0)][Mac (10, 13, onlyOn64: true)]
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
interface MPSImageDescriptor {
interface MPSImageDescriptor : NSCopying {

[Export ("width")]
nuint Width { get; set; }
Expand Down Expand Up @@ -3240,7 +3240,7 @@ interface IMPSCnnConvolutionDataSource { }
[TV (11,0), Mac (10, 13, onlyOn64: true), iOS (11,0)]
[Protocol, Model]
[BaseType (typeof (NSObject), Name = "MPSCNNConvolutionDataSource")]
interface MPSCnnConvolutionDataSource {
interface MPSCnnConvolutionDataSource : NSCopying {
[Abstract]
[Export ("dataType")]
MPSDataType DataType { get; }
Expand Down
1 change: 1 addition & 0 deletions tests/introspection/Mac/MacCoreImageFiltersTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public class MacCoreImageFiltersTest : ApiCoreImageFiltersTest
protected override bool Skip (string nativeName)
{
switch (nativeName) {
case "CISaliencyMapFilter": // Appears in 10.14 but not documented
case "CIEdgePreserveUpsampleFilter": // Appears in 10.13 but not documented
case "CIMaskedVariableBlur": // Appears removed in 10.11 but not documented
if (Mac.CheckSystemVersion (10, 11))
Expand Down