Rename a few files to be C++ sources

In anticipation for buffer revamp coming.
This commit is contained in:
Behdad Esfahbod 2010-05-12 18:23:21 -04:00
parent c3df649f25
commit 22da7fd94d
15 changed files with 34 additions and 33 deletions

View File

@ -12,16 +12,16 @@ HBLIBS =
HBSOURCES = \ HBSOURCES = \
hb-blob.c \ hb-blob.c \
hb-blob-private.h \ hb-blob-private.h \
hb-buffer.c \ hb-buffer.cc \
hb-buffer-private.h \ hb-buffer-private.hh \
hb-font.cc \ hb-font.cc \
hb-font-private.h \ hb-font-private.hh \
hb-object-private.h \ hb-object-private.h \
hb-open-file-private.hh \ hb-open-file-private.hh \
hb-open-type-private.hh \ hb-open-type-private.hh \
hb-language.c \ hb-language.c \
hb-private.h \ hb-private.h \
hb-shape.c \ hb-shape.cc \
hb-unicode.c \ hb-unicode.c \
hb-unicode-private.h \ hb-unicode-private.h \
$(NULL) $(NULL)
@ -43,9 +43,9 @@ HBSOURCES += \
hb-ot-layout-gpos-private.hh \ hb-ot-layout-gpos-private.hh \
hb-ot-layout-gsubgpos-private.hh \ hb-ot-layout-gsubgpos-private.hh \
hb-ot-layout-gsub-private.hh \ hb-ot-layout-gsub-private.hh \
hb-ot-layout-private.h \ hb-ot-layout-private.hh \
hb-ot-shape.c \ hb-ot-shape.cc \
hb-ot-shape-private.h \ hb-ot-shape-private.hh \
hb-ot-tag.c \ hb-ot-tag.c \
$(NULL) $(NULL)
HBHEADERS += \ HBHEADERS += \
@ -80,7 +80,7 @@ if HAVE_FREETYPE
HBCFLAGS += $(FREETYPE_CFLAGS) HBCFLAGS += $(FREETYPE_CFLAGS)
HBLIBS += $(FREETYPE_LIBS) HBLIBS += $(FREETYPE_LIBS)
HBSOURCES += \ HBSOURCES += \
hb-ft.c \ hb-ft.cc \
$(NULL) $(NULL)
HBHEADERS += \ HBHEADERS += \
hb-ft.h \ hb-ft.h \

View File

@ -1,6 +1,6 @@
/* /*
* Copyright (C) 1998-2004 David Turner and Werner Lemberg * Copyright (C) 1998-2004 David Turner and Werner Lemberg
* Copyright (C) 2004,2007,2009 Red Hat, Inc. * Copyright (C) 2004,2007,2009,2010 Red Hat, Inc.
* *
* This is part of HarfBuzz, a text shaping library. * This is part of HarfBuzz, a text shaping library.
* *

View File

@ -1,6 +1,6 @@
/* /*
* Copyright (C) 1998-2004 David Turner and Werner Lemberg * Copyright (C) 1998-2004 David Turner and Werner Lemberg
* Copyright (C) 2004,2007 Red Hat, Inc. * Copyright (C) 2004,2007,2009,2010 Red Hat, Inc.
* *
* This is part of HarfBuzz, a text shaping library. * This is part of HarfBuzz, a text shaping library.
* *
@ -25,7 +25,7 @@
* Red Hat Author(s): Owen Taylor, Behdad Esfahbod * Red Hat Author(s): Owen Taylor, Behdad Esfahbod
*/ */
#include "hb-buffer-private.h" #include "hb-buffer-private.hh"
#include <string.h> #include <string.h>
@ -66,7 +66,7 @@ hb_buffer_ensure_separate (hb_buffer_t *buffer, unsigned int size)
{ {
assert (buffer->have_output); assert (buffer->have_output);
if (!buffer->positions) if (!buffer->positions)
buffer->positions = calloc (buffer->allocated, sizeof (buffer->positions[0])); buffer->positions = (hb_internal_glyph_position_t *) calloc (buffer->allocated, sizeof (buffer->positions[0]));
buffer->out_string = (hb_internal_glyph_info_t *) buffer->positions; buffer->out_string = (hb_internal_glyph_info_t *) buffer->positions;
memcpy (buffer->out_string, buffer->in_string, buffer->out_length * sizeof (buffer->out_string[0])); memcpy (buffer->out_string, buffer->in_string, buffer->out_length * sizeof (buffer->out_string[0]));
@ -200,16 +200,16 @@ hb_buffer_ensure (hb_buffer_t *buffer, unsigned int size)
new_allocated += (new_allocated >> 1) + 8; new_allocated += (new_allocated >> 1) + 8;
if (buffer->positions) if (buffer->positions)
buffer->positions = realloc (buffer->positions, new_allocated * sizeof (buffer->positions[0])); buffer->positions = (hb_internal_glyph_position_t *) realloc (buffer->positions, new_allocated * sizeof (buffer->positions[0]));
if (buffer->out_string != buffer->in_string) if (buffer->out_string != buffer->in_string)
{ {
buffer->in_string = realloc (buffer->in_string, new_allocated * sizeof (buffer->in_string[0])); buffer->in_string = (hb_internal_glyph_info_t *) realloc (buffer->in_string, new_allocated * sizeof (buffer->in_string[0]));
buffer->out_string = (hb_internal_glyph_info_t *) buffer->positions; buffer->out_string = (hb_internal_glyph_info_t *) buffer->positions;
} }
else else
{ {
buffer->in_string = realloc (buffer->in_string, new_allocated * sizeof (buffer->in_string[0])); buffer->in_string = (hb_internal_glyph_info_t *) realloc (buffer->in_string, new_allocated * sizeof (buffer->in_string[0]));
buffer->out_string = buffer->in_string; buffer->out_string = buffer->in_string;
} }
@ -260,7 +260,7 @@ hb_buffer_clear_positions (hb_buffer_t *buffer)
if (unlikely (!buffer->positions)) if (unlikely (!buffer->positions))
{ {
buffer->positions = calloc (buffer->allocated, sizeof (buffer->positions[0])); buffer->positions = (hb_internal_glyph_position_t *) calloc (buffer->allocated, sizeof (buffer->positions[0]));
return; return;
} }

View File

@ -83,6 +83,7 @@ typedef enum _hb_direction_t {
#define HB_DIRECTION_IS_VERTICAL(dir) ((dir) == HB_DIRECTION_TTB || (dir) == HB_DIRECTION_BTT) #define HB_DIRECTION_IS_VERTICAL(dir) ((dir) == HB_DIRECTION_TTB || (dir) == HB_DIRECTION_BTT)
#define HB_DIRECTION_IS_FORWARD(dir) ((dir) == HB_DIRECTION_LTR || (dir) == HB_DIRECTION_TTB) #define HB_DIRECTION_IS_FORWARD(dir) ((dir) == HB_DIRECTION_LTR || (dir) == HB_DIRECTION_TTB)
#define HB_DIRECTION_IS_BACKWARD(dir) ((dir) == HB_DIRECTION_RTL || (dir) == HB_DIRECTION_BTT) #define HB_DIRECTION_IS_BACKWARD(dir) ((dir) == HB_DIRECTION_RTL || (dir) == HB_DIRECTION_BTT)
#define HB_DIRECTION_REVERSE(dir) ((hb_direction_t) (((unsigned int) (dir)) ^ 1))
#endif /* HB_COMMON_H */ #endif /* HB_COMMON_H */

View File

@ -31,7 +31,7 @@
#include "hb-font.h" #include "hb-font.h"
#include "hb-ot-layout-private.h" #include "hb-ot-layout-private.hh"
HB_BEGIN_DECLS HB_BEGIN_DECLS

View File

@ -26,11 +26,11 @@
#include "hb-private.h" #include "hb-private.h"
#include "hb-font-private.h" #include "hb-font-private.hh"
#include "hb-blob-private.h" #include "hb-blob-private.h"
#include "hb-open-file-private.hh" #include "hb-open-file-private.hh"
#include "hb-ot-layout-private.h" #include "hb-ot-layout-private.hh"
#include <string.h> #include <string.h>

View File

@ -29,7 +29,7 @@
#include "hb-ft.h" #include "hb-ft.h"
#include "hb-font-private.h" #include "hb-font-private.hh"
#include FT_TRUETYPE_TABLES_H #include FT_TRUETYPE_TABLES_H
@ -160,7 +160,7 @@ _get_table (hb_tag_t tag, void *user_data)
return hb_blob_create_empty (); return hb_blob_create_empty ();
/* TODO Use FT_Memory? */ /* TODO Use FT_Memory? */
buffer = malloc (length); buffer = (FT_Byte *) malloc (length);
if (buffer == NULL) if (buffer == NULL)
return NULL; return NULL;
@ -200,7 +200,7 @@ hb_ft_face_create (FT_Face ft_face,
static void static void
hb_ft_face_finalize (FT_Face ft_face) hb_ft_face_finalize (FT_Face ft_face)
{ {
hb_face_destroy (ft_face->generic.data); hb_face_destroy ((hb_face_t *) ft_face->generic.data);
} }
hb_face_t * hb_face_t *
@ -215,7 +215,7 @@ hb_ft_face_create_cached (FT_Face ft_face)
ft_face->generic.finalizer = (FT_Generic_Finalizer) hb_ft_face_finalize; ft_face->generic.finalizer = (FT_Generic_Finalizer) hb_ft_face_finalize;
} }
return hb_face_reference (ft_face->generic.data); return hb_face_reference ((hb_face_t *) ft_face->generic.data);
} }

View File

@ -27,7 +27,7 @@
#ifndef HB_OT_LAYOUT_COMMON_PRIVATE_HH #ifndef HB_OT_LAYOUT_COMMON_PRIVATE_HH
#define HB_OT_LAYOUT_COMMON_PRIVATE_HH #define HB_OT_LAYOUT_COMMON_PRIVATE_HH
#include "hb-ot-layout-private.h" #include "hb-ot-layout-private.hh"
#include "hb-open-type-private.hh" #include "hb-open-type-private.hh"

View File

@ -29,7 +29,7 @@
#include "hb-ot-layout-common-private.hh" #include "hb-ot-layout-common-private.hh"
#include "hb-font-private.h" #include "hb-font-private.hh"
/* /*

View File

@ -27,7 +27,7 @@
#ifndef HB_OT_LAYOUT_GSUBGPOS_PRIVATE_HH #ifndef HB_OT_LAYOUT_GSUBGPOS_PRIVATE_HH
#define HB_OT_LAYOUT_GSUBGPOS_PRIVATE_HH #define HB_OT_LAYOUT_GSUBGPOS_PRIVATE_HH
#include "hb-buffer-private.h" #include "hb-buffer-private.hh"
#include "hb-ot-layout-gdef-private.hh" #include "hb-ot-layout-gdef-private.hh"

View File

@ -32,7 +32,7 @@
#include "hb-ot-layout.h" #include "hb-ot-layout.h"
#include "hb-font.h" #include "hb-font.h"
#include "hb-buffer-private.h" #include "hb-buffer-private.hh"
HB_BEGIN_DECLS HB_BEGIN_DECLS

View File

@ -28,7 +28,7 @@
#define HB_OT_LAYOUT_CC #define HB_OT_LAYOUT_CC
#include "hb-ot-layout-private.h" #include "hb-ot-layout-private.hh"
#include "hb-ot-layout-gdef-private.hh" #include "hb-ot-layout-gdef-private.hh"
#include "hb-ot-layout-gsub-private.hh" #include "hb-ot-layout-gsub-private.hh"

View File

@ -24,9 +24,9 @@
* Red Hat Author(s): Behdad Esfahbod * Red Hat Author(s): Behdad Esfahbod
*/ */
#include "hb-ot-shape-private.h" #include "hb-ot-shape-private.hh"
#include "hb-buffer-private.h" #include "hb-buffer-private.hh"
#include "hb-ot-layout.h" #include "hb-ot-layout.h"

View File

@ -28,9 +28,9 @@
#include "hb-shape.h" #include "hb-shape.h"
#include "hb-buffer-private.h" #include "hb-buffer-private.hh"
#include "hb-ot-shape-private.h" #include "hb-ot-shape-private.hh"
/* Prepare */ /* Prepare */
@ -64,7 +64,7 @@ hb_ensure_native_direction (hb_buffer_t *buffer)
original_direction != _hb_script_get_horizontal_direction (buffer->script)) original_direction != _hb_script_get_horizontal_direction (buffer->script))
{ {
hb_buffer_reverse_clusters (buffer); hb_buffer_reverse_clusters (buffer);
buffer->direction ^= 1; buffer->direction = HB_DIRECTION_REVERSE (buffer->direction);
} }
return original_direction; return original_direction;