mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-09 04:58:04 +02:00
Entagle the cairo_unscaled_font_t typedef.
This commit is contained in:
parent
c14f2252b1
commit
75e3d28834
2 changed files with 6 additions and 4 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2005-08-05 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* src/cairoint.h: Entagle the cairo_unscaled_font_t typedef.
|
||||
|
||||
2005-08-05 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* src/cairoint.h: Rename font_face_backend->create_font to
|
||||
|
|
|
|||
|
|
@ -454,8 +454,6 @@ _cairo_hash_string (const char *c);
|
|||
#define CAIRO_IMAGE_GLYPH_CACHE_MEMORY_DEFAULT 0x100000
|
||||
#define CAIRO_XLIB_GLYPH_CACHE_MEMORY_DEFAULT 0x100000
|
||||
|
||||
typedef struct _cairo_unscaled_font cairo_unscaled_font_t;
|
||||
|
||||
typedef struct _cairo_unscaled_font_backend cairo_unscaled_font_backend_t;
|
||||
typedef struct _cairo_scaled_font_backend cairo_scaled_font_backend_t;
|
||||
typedef struct _cairo_font_face_backend cairo_font_face_backend_t;
|
||||
|
|
@ -464,10 +462,10 @@ typedef struct _cairo_font_face_backend cairo_font_face_backend_t;
|
|||
* A cairo_unscaled_font_t is just an opaque handle we use in the
|
||||
* glyph cache.
|
||||
*/
|
||||
struct _cairo_unscaled_font {
|
||||
typedef struct _cairo_unscaled_font {
|
||||
int ref_count;
|
||||
const cairo_unscaled_font_backend_t *backend;
|
||||
};
|
||||
} cairo_unscaled_font_t;
|
||||
|
||||
struct _cairo_font_options {
|
||||
cairo_antialias_t antialias;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue