[raster] Remove last remnants of `raster5' driver.
* src/raster/ftrend1.h (ft_raster5_renderer_class): Removed. * src/raster/rastpic.c, src/raster/rastpic.h (ft_raster5_renderer_class_pic_init, ft_raster5_renderer_class_pic_free): Removed.
This commit is contained in:
parent
340e59da3a
commit
91d59169a8
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2015-08-18 Werner Lemberg <wl@gnu.org>
|
||||||
|
|
||||||
|
[raster] Remove last remnants of `raster5' driver.
|
||||||
|
|
||||||
|
* src/raster/ftrend1.h (ft_raster5_renderer_class): Removed.
|
||||||
|
|
||||||
|
* src/raster/rastpic.c, src/raster/rastpic.h
|
||||||
|
(ft_raster5_renderer_class_pic_init,
|
||||||
|
ft_raster5_renderer_class_pic_free): Removed.
|
||||||
|
|
||||||
2015-08-17 Alexei Podtelezhnikov <apodtele@gmail.com>
|
2015-08-17 Alexei Podtelezhnikov <apodtele@gmail.com>
|
||||||
|
|
||||||
[base] Improve emboldener (#45596).
|
[base] Improve emboldener (#45596).
|
||||||
|
|
|
@ -63,7 +63,7 @@ FT_BEGIN_HEADER
|
||||||
/* psaux */
|
/* psaux */
|
||||||
/* pshinter */
|
/* pshinter */
|
||||||
/* psnames */
|
/* psnames */
|
||||||
/* raster1, raster5 */
|
/* raster1 */
|
||||||
/* sfnt */
|
/* sfnt */
|
||||||
/* smooth, smooth-lcd, smooth-lcdv */
|
/* smooth, smooth-lcd, smooth-lcdv */
|
||||||
/* truetype */
|
/* truetype */
|
||||||
|
|
|
@ -29,12 +29,6 @@ FT_BEGIN_HEADER
|
||||||
|
|
||||||
FT_DECLARE_RENDERER( ft_raster1_renderer_class )
|
FT_DECLARE_RENDERER( ft_raster1_renderer_class )
|
||||||
|
|
||||||
/* this renderer is _NOT_ part of the default modules, you'll need */
|
|
||||||
/* to register it by hand in your application. It should only be */
|
|
||||||
/* used for backwards-compatibility with FT 1.x anyway. */
|
|
||||||
/* */
|
|
||||||
FT_DECLARE_RENDERER( ft_raster5_renderer_class )
|
|
||||||
|
|
||||||
|
|
||||||
FT_END_HEADER
|
FT_END_HEADER
|
||||||
|
|
||||||
|
|
|
@ -59,8 +59,9 @@
|
||||||
FT_Memory memory = library->memory;
|
FT_Memory memory = library->memory;
|
||||||
|
|
||||||
|
|
||||||
/* since this function also serves raster5 renderer, */
|
/* XXX: since this function also served the no longer available */
|
||||||
/* it implements reference counting */
|
/* raster5 renderer it uses reference counting, which could */
|
||||||
|
/* be removed now */
|
||||||
if ( pic_container->raster )
|
if ( pic_container->raster )
|
||||||
{
|
{
|
||||||
((RasterPIC*)pic_container->raster)->ref_count++;
|
((RasterPIC*)pic_container->raster)->ref_count++;
|
||||||
|
@ -82,21 +83,6 @@
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* re-route these init and free functions to the above functions */
|
|
||||||
FT_Error
|
|
||||||
ft_raster5_renderer_class_pic_init( FT_Library library )
|
|
||||||
{
|
|
||||||
return ft_raster1_renderer_class_pic_init( library );
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void
|
|
||||||
ft_raster5_renderer_class_pic_free( FT_Library library )
|
|
||||||
{
|
|
||||||
ft_raster1_renderer_class_pic_free( library );
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif /* FT_CONFIG_OPTION_PIC */
|
#endif /* FT_CONFIG_OPTION_PIC */
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -48,15 +48,9 @@ FT_BEGIN_HEADER
|
||||||
void
|
void
|
||||||
ft_raster1_renderer_class_pic_free( FT_Library library );
|
ft_raster1_renderer_class_pic_free( FT_Library library );
|
||||||
|
|
||||||
void
|
|
||||||
ft_raster5_renderer_class_pic_free( FT_Library library );
|
|
||||||
|
|
||||||
FT_Error
|
FT_Error
|
||||||
ft_raster1_renderer_class_pic_init( FT_Library library );
|
ft_raster1_renderer_class_pic_init( FT_Library library );
|
||||||
|
|
||||||
FT_Error
|
|
||||||
ft_raster5_renderer_class_pic_init( FT_Library library );
|
|
||||||
|
|
||||||
#endif /* FT_CONFIG_OPTION_PIC */
|
#endif /* FT_CONFIG_OPTION_PIC */
|
||||||
|
|
||||||
/* */
|
/* */
|
||||||
|
|
Loading…
Reference in New Issue