Add shfill operator.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@16743 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Alexander Malmberg 2003-05-17 22:04:00 +00:00
parent 9dce871b41
commit 52308a0016
6 changed files with 41 additions and 0 deletions

View file

@ -603,6 +603,8 @@ NSGraphicsContext *GSCurrentContext(void)
GET_IMP(@selector(DPSrmoveto::));
methodTable.DPSstroke =
GET_IMP(@selector(DPSstroke));
methodTable.DPSshfill =
GET_IMP(@selector(DPSshfill:));
methodTable.GSSendBezierPath_ =
GET_IMP(@selector(GSSendBezierPath:));
@ -1298,6 +1300,11 @@ NSGraphicsContext *GSCurrentContext(void)
[self subclassResponsibility: _cmd];
}
- (void) DPSshfill: (NSDictionary *)shaderDictionary
{
[self subclassResponsibility: _cmd];
}
/** Set the bezier path as the current path */
- (void) GSSendBezierPath: (NSBezierPath *)path
{