mirror of
https://github.com/gnustep/libs-back.git
synced 2025-05-29 16:31:29 +00:00
Focus fixes. Update passing of colorspaces, fonts
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@14680 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
31cc43ff10
commit
8ce5bbbfbc
11 changed files with 85 additions and 98 deletions
|
@ -255,24 +255,24 @@ static unsigned int unique_index = 0;
|
|||
[gstate DPSsetrgbcolor:r :g :b];
|
||||
}
|
||||
|
||||
- (void) GSSetFillColorspace: (NSDictionary *)dict
|
||||
- (void) GSSetFillColorspace: (void *)spaceref
|
||||
{
|
||||
[self notImplemented: _cmd];
|
||||
[gstate GSSetFillColorspace: spaceref];
|
||||
}
|
||||
|
||||
- (void) GSSetStrokeColorspace: (NSDictionary *)dict
|
||||
- (void) GSSetStrokeColorspace: (void *)spaceref
|
||||
{
|
||||
[self notImplemented: _cmd];
|
||||
[gstate GSSetStrokeColorspace: spaceref];
|
||||
}
|
||||
|
||||
- (void) GSSetFillColor: (float *)values
|
||||
- (void) GSSetFillColor: (const float *)values
|
||||
{
|
||||
[self notImplemented: _cmd];
|
||||
[gstate GSSetFillColor: values];
|
||||
}
|
||||
|
||||
- (void) GSSetStrokeColor: (float *)values
|
||||
- (void) GSSetStrokeColor: (const float *)values
|
||||
{
|
||||
[self notImplemented: _cmd];
|
||||
[gstate GSSetStrokeColor: values];
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------- */
|
||||
|
@ -323,9 +323,9 @@ static unsigned int unique_index = 0;
|
|||
[gstate GSSetCharacterSpacing: extra];
|
||||
}
|
||||
|
||||
- (void) GSSetFont: (NSFont*)font
|
||||
- (void) GSSetFont: (void *)fontref
|
||||
{
|
||||
[gstate GSSetFont: font];
|
||||
[gstate GSSetFont: fontref];
|
||||
}
|
||||
|
||||
- (void) GSSetFontSize: (float)size
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue