ref: b71c6af028715b35e35be15488c81d3636c522f0
parent: 426984e47b64dcd1ffa48ae922e05a3f4cef8d36
author: David Turner <[email protected]>
date: Sun Sep 17 13:17:16 EDT 2000
fixed minor bug in the smooth renderer which forced the span callback to be called with y == -1 and count == 0
--- a/src/smooth/ftgrays.c
+++ b/src/smooth/ftgrays.c
@@ -1320,7 +1320,7 @@
if ( ras.span_y != y || count >= FT_MAX_GRAY_SPANS )
{
- if ( ras.render_span )
+ if ( ras.render_span && count > 0 )
ras.render_span( ras.span_y, count, ras.gray_spans,
ras.render_span_data );
/* ras.render_span( span->y, ras.gray_spans, count ); */