Subversion Repositories Kolibri OS

Rev

Rev 4349 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4349 Rev 6073
Line 4497... Line 4497...
4497
 
4497
 
4498
static void
4498
static void
4499
_cairo_debug_print_surface_pattern (FILE *file,
4499
_cairo_debug_print_surface_pattern (FILE *file,
4500
				    const cairo_surface_pattern_t *pattern)
4500
				    const cairo_surface_pattern_t *pattern)
4501
{
4501
{
4502
    printf ("  surface type: %d\n", pattern->surface->type);
4502
    fprintf (file,"  surface type: %d\n", pattern->surface->type);
Line 4503... Line 4503...
4503
}
4503
}
4504
 
4504
 
4505
static void
4505
static void
4506
_cairo_debug_print_raster_source_pattern (FILE *file,
4506
_cairo_debug_print_raster_source_pattern (FILE *file,
4507
					  const cairo_raster_source_pattern_t *raster)
4507
					  const cairo_raster_source_pattern_t *raster)
4508
{
4508
{
Line 4509... Line 4509...
4509
    printf ("  content: %x, size %dx%d\n", raster->content, raster->extents.width, raster->extents.height);
4509
    fprintf (file, "  content: %x, size %dx%d\n", raster->content, raster->extents.width, raster->extents.height);
4510
}
4510
}
4511
 
4511