File: CairoFt.xs

package info (click to toggle)
libcairo-perl 1.060-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 500 kB
  • ctags: 683
  • sloc: perl: 1,781; ansic: 63; makefile: 53
file content (19 lines) | stat: -rw-r--r-- 614 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Copyright (c) 2007 by the cairo perl team (see the file README)
 *
 * Licensed under the LGPL, see LICENSE file for more information.
 *
 * $Header: /cvs/cairo/cairo-perl/CairoFt.xs,v 1.1 2007-10-24 16:32:05 tsch Exp $
 */

#include <cairo-perl.h>

MODULE = Cairo::Ft	PACKAGE = Cairo::FtFontFace PREFIX = cairo_ft_font_face_

# cairo_font_face_t * cairo_ft_font_face_create_for_ft_face (FT_Face face, int load_flags);
cairo_font_face_t_noinc *
cairo_ft_font_face_create (class, FT_Face face, int load_flags=0)
    CODE:
	RETVAL = cairo_ft_font_face_create_for_ft_face (face, load_flags);
    OUTPUT:
	RETVAL