Files
swift-mirror/stdlib/objc/QuartzCore/QuartzCore.swift
Chris Willmore 68dd563fbf <rdar://problem/18311362> TLF: Eliminate implicit bridging conversions
Require 'as' when converting from Objective-C type to native type (but
continue to allow implicit conversion from native to Objective-C). This
conversion constraint is called ExplicitConversion; all implicit
conversions are covered by the existing Conversion constraint. Update
standard library and tests to match.

Swift SVN r24496
2015-01-18 00:07:45 +00:00

56 lines
1.9 KiB
Swift

//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import Foundation
@exported import QuartzCore // Clang module
// sdk overlays:
extension CIFilter {
// - (CIImage *)apply:(CIKernel *)k, ...
// @objc(apply:arguments:options:)
// func apply(k: CIKernel!,
// arguments args: [AnyObject]!,
// options dict: Dictionary<NSObject, AnyObject>!) -> CIImage!
func apply(k: CIKernel!, args: [AnyObject]!, options: (NSCopying, AnyObject)...) -> CIImage {
var dict = NSMutableDictionary()
for (key, value) in options {
dict[key] = value
}
return self.apply(k, arguments: args, options: dict as [NSObject: AnyObject])
}
convenience init(name: String!,
elements: (NSCopying, AnyObject)...) {
var dict = NSMutableDictionary()
for (key, value) in elements {
dict[key] = value
}
self.init(name: name, withInputParameters: dict as [NSObject: AnyObject])
}
}
// sdk overlays:
extension CISampler {
// - (id)initWithImage:(CIImage *)im keysAndValues:key0, ...;
convenience init(im: CIImage!, elements: (NSCopying, AnyObject)...) {
var dict = NSMutableDictionary()
for (key, value) in elements {
dict[key] = value
}
// @objc(initWithImage:options:)
// init(image im: CIImage!,
// options dict: NSDictionary!)
self.init(image: im, options: dict as [NSObject: AnyObject])
}
}