mirror of
git://git.savannah.gnu.org/freetype/freetype2.git
synced 2025-04-11 22:56:50 +02:00
Logging for testing
This commit is contained in:
parent
bb95b4423e
commit
39bcb3a647
@ -57,6 +57,7 @@ dense_move_to( const FT_Vector* to, RasterFP* aRasterFP )
|
||||
static int
|
||||
dense_line_to( const FT_Vector* to, RasterFP* aRasterFP )
|
||||
{
|
||||
printf("dense_line_to: %d, %d\n", to->x, to->y);
|
||||
RasterFP_Point tp = {UPSCALE(to->x), UPSCALE(to->y)};
|
||||
RasterFP_Point lp = {aRasterFP->prev_x, aRasterFP->prev_y};
|
||||
RasterFP_DrawLine( aRasterFP, lp, tp );
|
||||
|
@ -1451,6 +1451,7 @@ typedef ptrdiff_t FT_PtrDist;
|
||||
gray_line_to( const FT_Vector* to,
|
||||
gray_PWorker worker )
|
||||
{
|
||||
printf("gray_line_to: %d, %d\n", to->x, to->y);
|
||||
gray_render_line( RAS_VAR_ UPSCALE( to->x ), UPSCALE( to->y ) );
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user