mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 11:51:27 +00:00
* Source/art/blit.m(MPRE): Remove compiler warning.
* Source/art/image.m(-DPSimage:::::::::::): Correct parameter types. Fixes bug #41274. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@37615 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e3616445b7
commit
03babeb064
3 changed files with 10 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2013-01-19 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
|
* Source/art/blit.m(MPRE): Remove compiler warning.
|
||||||
|
* Source/art/image.m(-DPSimage:::::::::::): Correct parameter
|
||||||
|
types. Fixes bug #41274.
|
||||||
|
|
||||||
2013-01-08 Fred Kiefer <FredKiefer@gmx.de>
|
2013-01-08 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
* configure: Remove duplicate addition of Xext.
|
* configure: Remove duplicate addition of Xext.
|
||||||
|
|
|
@ -318,7 +318,7 @@ static void MPRE(run_opaque) (render_run_t *ri, int num)
|
||||||
|
|
||||||
COPY_ASSEMBLE_PIXEL(v, ri->r, ri->g, ri->b)
|
COPY_ASSEMBLE_PIXEL(v, ri->r, ri->g, ri->b)
|
||||||
v = v + (v << 16);
|
v = v + (v << 16);
|
||||||
if (((int)dst&2) && num)
|
if (((NSUInteger)dst&2) && num)
|
||||||
{
|
{
|
||||||
*dst++ = v;
|
*dst++ = v;
|
||||||
num--;
|
num--;
|
||||||
|
|
|
@ -606,9 +606,9 @@ seem to cause edges to be off by a pixel
|
||||||
|
|
||||||
|
|
||||||
- (void)DPSimage: (NSAffineTransform *) matrix
|
- (void)DPSimage: (NSAffineTransform *) matrix
|
||||||
: (int) pixelsWide : (int) pixelsHigh
|
: (NSInteger) pixelsWide : (NSInteger) pixelsHigh
|
||||||
: (int) bitsPerSample : (int) samplesPerPixel
|
: (NSInteger) bitsPerSample : (NSInteger) samplesPerPixel
|
||||||
: (int) bitsPerPixel : (int) bytesPerRow : (BOOL) isPlanar
|
: (NSInteger) bitsPerPixel : (NSInteger) bytesPerRow : (BOOL) isPlanar
|
||||||
: (BOOL) hasAlpha : (NSString *) colorSpaceName
|
: (BOOL) hasAlpha : (NSString *) colorSpaceName
|
||||||
: (const unsigned char *const [5]) data
|
: (const unsigned char *const [5]) data
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue