shithub: freetype+ttf2subf

Download patch

ref: ec0b2cd97441c99021be80044f159b8b090dfb57
parent: 78dd7104ef2419d742d89ae897f99d8fe06d4685
author: David Turner <[email protected]>
date: Tue Oct 3 15:22:52 EDT 2000

small fix:
  when in direct rendering mode, the target bitmap buffer
  is not checked..

git/fs: mount .git/fs: mount/attach disallowed
--- a/src/smooth/ftgrays.c
+++ b/src/smooth/ftgrays.c
@@ -1854,7 +1854,7 @@
       return ErrRaster_Invalid_Outline;
 
     /* if direct mode is not set, we must have a target bitmap */
-    if ( (params->flags & ft_raster_flag_direct == 0) &&
+    if ( (params->flags & ft_raster_flag_direct) == 0 &&
          ( !target_map || !target_map->buffer )       )
       return -1;
 
@@ -1868,8 +1868,6 @@
 
     if (target_map)
       ras.target = *target_map;
-    else
-      ras.target = 0;
 
     ras.render_span      = (FT_Raster_Span_Func)grays_render_span;
     ras.render_span_data = &ras;