Removing the use of private CoreGraphics APIs to draw shadows, and replacing with...
[ITKit.git] / ITCoreImageView.m
1 /*
2  *      ITKit
3  *      ITCoreImageView.m
4  *
5  *      View subclass that provides the view for the masking window of a Core Image effect
6  *
7  *      Copyright (c) 2006 by iThink Software.
8  *      All Rights Reserved.
9  *
10  *      $Id$
11  *
12  */
13
14 #import "ITCoreImageView.h"
15
16 @implementation ITCoreImageView
17
18 -(void)drawRect:(NSRect)rect
19 {
20         [[NSColor clearColor] set];
21     NSRectFill(rect);
22 }
23
24 @end