Skip to content

Commit

Permalink
codegen: drop explicit skips
Browse files Browse the repository at this point in the history
  • Loading branch information
tmc committed Jun 22, 2024
1 parent a35a378 commit bc8d39d
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions generate/codegen/modulewriter.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,18 +160,6 @@ func shouldSkipFunction(f *Function) bool {
if hasBlockParam(f.Parameters) {
return true
}
if _, ok := map[string]bool{
"CGDirectDisplayCopyCurrentMetalDevice": true,
"CGColorSpaceCreateWithPropertyList": true,
"CGDisplayIOServicePort": true,
"CGGetEventTapList": true,
"CGColorConversionInfoCreateFromListWithArguments": true,
"CGEventKeyboardSetUnicodeString": true,
"CGEventPostToPid": true,
"CGEventKeyboardGetUnicodeString": true,
}[f.Name]; ok {
return true
}
return false
}

Expand Down

0 comments on commit bc8d39d

Please sign in to comment.