Skip to content
Closed
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
19 changes: 2 additions & 17 deletions runtime/bindings-generator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1887,28 +1887,13 @@ static IEnumerable<FunctionData> GetFunctionData ()

data.Add (
new FunctionData {
Comment = " // Matrix4 func (CGSize, int, nfloat, nfloat)",
Comment = " // Matrix4 func (CGSize, /* UIInterfaceOrientation */ nint, nfloat, nfloat)",
Prefix = "simd__",
Variants = Variants.All,
ReturnType = Types.Matrix4f,
Parameters = new ParameterData[] {
new ParameterData { TypeData = Types.CGSize },
new ParameterData { TypeData = Types.Int32 },
new ParameterData { TypeData = Types.NFloat },
new ParameterData { TypeData = Types.NFloat },
},
}
);

data.Add (
new FunctionData {
Comment = " // Matrix4 func (CGSize, Int64, nfloat, nfloat)",
Prefix = "simd__",
Variants = Variants.All,
ReturnType = Types.Matrix4f,
Parameters = new ParameterData[] {
new ParameterData { TypeData = Types.CGSize },
new ParameterData { TypeData = Types.Int64 },
new ParameterData { TypeData = Types.NInt },
new ParameterData { TypeData = Types.NFloat },
new ParameterData { TypeData = Types.NFloat },
},
Expand Down