X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/3ab111b775ac8cd5dcb452d42ff72b48b7b1a4b0..4701dfd179c4ea4a898bc394ddbb138a1bc4f6b4:/ITCoreImageView.m diff --git a/ITCoreImageView.m b/ITCoreImageView.m new file mode 100644 index 0000000..1ba1044 --- /dev/null +++ b/ITCoreImageView.m @@ -0,0 +1,24 @@ +/* + * ITKit + * ITCoreImageView.m + * + * View subclass that provides the view for the masking window of a Core Image effect + * + * Copyright (c) 2006 by iThink Software. + * All Rights Reserved. + * + * $Id$ + * + */ + +#import "ITCoreImageView.h" + +@implementation ITCoreImageView + +-(void)drawRect:(NSRect)rect +{ + [[NSColor clearColor] set]; + NSRectFill(rect); +} + +@end