Added a new core image ripple effect.
[ITKit.git] / ITCoreImageView.m
diff --git a/ITCoreImageView.m b/ITCoreImageView.m
new file mode 100644 (file)
index 0000000..1ba1044
--- /dev/null
@@ -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