summaryrefslogtreecommitdiff
path: root/src/smooth
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2017-05-14 21:57:27 +0200
committerWerner Lemberg <wl@gnu.org>2017-05-14 21:57:27 +0200
commite99b26aadae8fa057debf995e4b8017e18c2b995 (patch)
tree46d92c41b82f4fb386469d6f4ff20df6d23c19c7 /src/smooth
parenta12a34451a99cbbcad55d466940fd445171927fd (diff)
downloadfreetype2-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.c7
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;
}