fixed small bug (no need to test target pixmap in direct rendering mode)
This commit is contained in:
parent
28ffa1f5d6
commit
1eb9a43aa1
|
@ -3260,13 +3260,13 @@
|
|||
if ( outline->n_points != outline->contours[outline->n_contours - 1] + 1 )
|
||||
return Raster_Err_Invalid;
|
||||
|
||||
if ( !target_map || !target_map->buffer )
|
||||
return Raster_Err_Invalid;
|
||||
|
||||
/* this version of the raster does not support direct rendering, sorry */
|
||||
if ( params->flags & ft_raster_flag_direct )
|
||||
return Raster_Err_Unsupported;
|
||||
|
||||
if ( !target_map || !target_map->buffer )
|
||||
return Raster_Err_Invalid;
|
||||
|
||||
ras.outline = *outline;
|
||||
ras.target = *target_map;
|
||||
|
||||
|
|
Loading…
Reference in New Issue