WRaster: add functions to save image on disk
[wmaker-crm.git] / wrlib / ChangeLog
blobd6d99681b23d131f3c95b3e0feab9f3a2161f260
1 - added RSaveTitledImage()
3 - removed obsoleted RDestroyImage()
4 - removed Hermes code.
5 - Put back asm/mmx optimized code.
7 - fixed a bug in RCombineAreaWithOpaqueness() (Brad <lists@anomie.yi.org>)
9 - Added retain/release mechanism to RImage by adding RRetainImage() and
10   RReleaseImage(). RDestroyImage() is an alias to RReleaseImage() now, but
11   will be removed in a future release because it no longer fits with the
12   semantics. Will be kept for a while to allow a smoother transition.
13   More about in NEWS
14 - Fixed crashing for Pseudocolor visuals with BestMatchRendering
15 - Small speed improvement for 24 and 32 bpp, if internal converter is used
16 - Small speed improvement for generating gradients.
17 - Fixed RSaveXPM() to output correct xpm images.
18 - Fixed speckles (white dots) on dithered images (bug still present on the
19   PowerPC architecture, because on LinuxPPC char is unsigned by default, not
20   signed like on the other platforms).
21   Bug fixed by Philip Derrin <philipd@student.unsw.edu.au>
22 - Fixed not working Grayscale visual (was crashing)
23 - Fixed wrong display of images with alpha in StaticGray and GrayScale visuals
26 - fixed code dependant on the order of evaluation. code like
27   *ptr++ = *ptr++ = *ptr++ = color;
28   is wrong, because there is no guarantee that ptr will be incremented
29   _between_ the assignment operations. it can be incremented after all
30   assignment operations as well. Because of this both of these are valid
31   implementations for a compiler:
32    a. assign, increment, assign, increment, assign, increment
33    b. assign, assign, assign, increment by 3
34   In case b. only the first memory location of the 3 will be modified, being
35   assigned 3 times the same value, while the other 2 remain unchanged.
36   For example egcs-2.91.66 (and possibly gcc-2.95.x too) implement this in
37   the second way (like in case b.)
38   Also the order in which the assignement is made is undefined (left to right
39   or right to left).
41 - added RMakeCenteredImage()
43 - Added code to draw pixels and lines. Both writing absolute values, or
44   offseting existing pixels with delta values are supported.
45 - Remade the beveling code to be simpler, using the RAlterLine() functions.
46 - Fixed some pixels in the bevels.
47 - Changed RAlter* functions to more generic ROperate*