mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-20 14:27:41 +00:00
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:
parent
9dce871b41
commit
52308a0016
6 changed files with 41 additions and 0 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue