darling-cocotron/AppKit/NSCIImageRep.m
Christopher Lloyd 98eb99c63a - some POSIX pthread functions
- some CFByteOrder implementation
- CFHost implementation with asynchronous resolver
- CFPreferences skeletons
- CIImage category in NSCIImageRep
- NSTabView resizes item view even if autoresizing is off
- NSCustomObject -description
- NSNibLoading use of autorelease pool to reduce memory pressure
- NSNib use of autorelease pool to reduce memory pressure
- NSIBObjectData warning if it can't create  custom instance instead of NSArray exception (adding nil)
- changed NSBox to non-opaque, doesn't fill with background color
- NSTableHeaderView use of setControlView:
- NSMatrix use of setControlView:
- NSAnimation/NSViewAnimation fixes to behave properly with timer
- NSSheetContext check for nil
- NSGraphicsStyle_uxtheme fix for menu separators
- NSEvent -userData method added
- minor cleanup of NSInvocation
- NSDateFormatter fixes and update
- NSArray+KVC.m fix for nil values
2010-03-08 19:43:05 +00:00

12 lines
270 B
Objective-C

#import <AppKit/NSCIImageRep.h>
#import <AppKit/NSRaise.h>
#import <AppKit/NSBitmapImageRep.h>
@implementation CIImage(CIImageRepAdditions)
-initWithBitmapImageRep:(NSBitmapImageRep *)bitmapImageRep {
return [self initWithCGImage:[bitmapImageRep CGImage]];
}
@end