~ubuntu-branches/ubuntu/precise/libxfont/precise-security

« back to all changes in this revision

Viewing changes to src/fc/fsconvert.c

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2007-07-18 16:46:59 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070718164659-h894n91b3dynfwi2
Tags: 1:1.3.0-0ubuntu1
* New upstream release.
* debian/control:
  - Maintainer field updated
* debian/copyright:
  - Added packaging copyright

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
 
44
44
extern char _fs_glyph_undefined;
45
45
extern char _fs_glyph_requested;
46
 
extern char _fs_glyph_zero_length;
47
 
 
48
46
 
49
47
/*
50
48
 * converts data from font server form to X server form
400
398
    }
401
399
}
402
400
 
403
 
 
404
 
/*
405
 
 * figures out what extents to request
406
 
 * this is where lots of extra
407
 
 * smarts wants to live
408
 
 */
409
 
/* ARGSUSED */
410
 
int
411
 
_fs_check_extents(FontPtr pfont, Mask flags, int nranges, fsRange *range, 
412
 
                  FSBlockDataPtr blockrec)
413
 
{
414
 
/* XXX -- either fill in the requested info if we have it somewhere
415
 
 * and return AccessDone, or else return Successful
416
 
 */
417
 
    return Successful;
418
 
}
419
 
 
420
 
/*
421
 
 * figures out what glyphs to request
422
 
 * this is where lots of extra
423
 
 * smarts wants to live
424
 
 */
425
 
/* ARGSUSED */
426
 
int
427
 
_fs_check_bitmaps(FontPtr pfont, fsBitmapFormat format, 
428
 
                  Mask flags, int nranges, fsRange *range, 
429
 
                  FSBlockDataPtr blockrec)
430
 
{
431
 
/* XXX -- either fill in the requested info if we have it somewhere
432
 
 * and return AccessDone, or else return Successful
433
 
 */
434
 
    return Successful;
435
 
}
436
 
 
437
 
int
 
401
static int
438
402
_fs_get_glyphs(FontPtr pFont, unsigned long count, unsigned char *chars, 
439
403
               FontEncoding charEncoding, 
440
404
               unsigned long *glyphCount, /* RETURN */
640
604
}
641
605
 
642
606
 
643
 
void
 
607
static void
644
608
_fs_unload_font(FontPtr pfont)
645
609
{
646
610
    FSFontPtr       fsdata = (FSFontPtr) pfont->fontPrivate;