diff options
author | Werner Lemberg <wl@gnu.org> | 2017-05-14 21:57:27 +0200 |
---|---|---|
committer | Werner Lemberg <wl@gnu.org> | 2017-05-14 21:57:27 +0200 |
commit | e99b26aadae8fa057debf995e4b8017e18c2b995 (patch) | |
tree | 46d92c41b82f4fb386469d6f4ff20df6d23c19c7 /src/smooth | |
parent | a12a34451a99cbbcad55d466940fd445171927fd (diff) | |
download | freetype2-e99b26aadae8fa057debf995e4b8017e18c2b995.tar.gz |
Remove remnants of raster pool.
* include/freetype/internal/ftobjs.h (FT_LibraryRec): Remove
`raster_pool' and `raster_pool_size' fields.
* src/base/ftobjs.c (FT_New_Library), src/raster/ftrend1.c
(ft_raster1_init), src/smooth/ftsmooth.c (ft_smooth_init): Updated.
Diffstat (limited to 'src/smooth')
-rw-r--r-- | src/smooth/ftsmooth.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/smooth/ftsmooth.c b/src/smooth/ftsmooth.c index 435854e67..cd7a87b0f 100644 --- a/src/smooth/ftsmooth.c +++ b/src/smooth/ftsmooth.c @@ -31,12 +31,7 @@ static FT_Error ft_smooth_init( FT_Renderer render ) { - FT_Library library = FT_MODULE_LIBRARY( render ); - - - render->clazz->raster_class->raster_reset( render->raster, - library->raster_pool, - library->raster_pool_size ); + render->clazz->raster_class->raster_reset( render->raster, NULL, 0 ); return 0; } |