summaryrefslogtreecommitdiff
path: root/src/cairo-atsui-font.c
diff options
context:
space:
mode:
authorChristian Biesinger <cbiesinger@web.de>2006-02-26 10:46:04 +0100
committerChristian Biesinger <cbiesinger@web.de>2006-02-26 11:13:42 +0100
commitdba214b944a16dd7ee781f495cd5fbe83f678451 (patch)
treeeba26477d51c59effb416501efa9e186950c9cdb /src/cairo-atsui-font.c
parentd0e02a948e83e3b1b330c9cb0aa4930b42bf485c (diff)
downloadcairo-dba214b944a16dd7ee781f495cd5fbe83f678451.tar.gz
Use C-style comments rather than C++-style
Diffstat (limited to 'src/cairo-atsui-font.c')
-rw-r--r--src/cairo-atsui-font.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/cairo-atsui-font.c b/src/cairo-atsui-font.c
index 9f3b54da1..12cd329f7 100644
--- a/src/cairo-atsui-font.c
+++ b/src/cairo-atsui-font.c
@@ -132,7 +132,7 @@ CreateSizedCopyOfStyle(ATSUStyle inStyle, const cairo_matrix_t *scale)
ATSUStyle style;
OSStatus err;
- // Set the style's size
+ /* Set the style's size */
CGAffineTransform theTransform =
CGAffineTransformMakeWithCairoFontScale(scale);
Fixed theSize =
@@ -174,7 +174,7 @@ _cairo_atsui_font_set_metrics (cairo_atsui_font_t *font)
extents.height = metrics.capHeight;
extents.max_x_advance = metrics.maxAdvanceWidth;
- // The FT backend doesn't handle max_y_advance either, so we'll ignore it for now.
+ /* The FT backend doesn't handle max_y_advance either, so we'll ignore it for now. */
extents.max_y_advance = 0.0;
_cairo_scaled_font_set_metrics (&font->base, &extents);
@@ -275,7 +275,7 @@ _cairo_atsui_font_create_toy(cairo_toy_font_face_t *toy_face,
kFontNoLanguageCode, &fontID);
if (err != noErr) {
- // couldn't get the font - remap css names and try again
+ /* couldn't get the font - remap css names and try again */
if (!strcmp(family, "serif"))
family = "Times";
@@ -287,7 +287,7 @@ _cairo_atsui_font_create_toy(cairo_toy_font_face_t *toy_face,
family = "Gadget";
else if (!strcmp(family, "monospace"))
family = "Courier";
- else // anything else - return error instead?
+ else /* anything else - return error instead? */
family = "Courier";
err = ATSUFindFontFromName(family, strlen(family),
@@ -504,7 +504,7 @@ _cairo_atsui_font_text_to_glyphs (void *abstract_font,
err = ATSUSetTextPointerLocation(textLayout, utf16, 0, n16, n16);
- // Set the style for all of the text
+ /* Set the style for all of the text */
err = ATSUSetRunStyle(textLayout,
font->style, kATSUFromTextBeginning, kATSUToTextEnd);
@@ -565,7 +565,7 @@ _cairo_atsui_font_old_show_glyphs (void *abstract_font,
&rect,
&extra);
- // Create a CGBitmapContext for the dest surface for drawing into
+ /* Create a CGBitmapContext for the dest surface for drawing into */
colorSpace = CGColorSpaceCreateDeviceRGB();
myBitmapContext = CGBitmapContextCreate(destImageSurface->data,
@@ -633,11 +633,12 @@ _cairo_atsui_font_old_show_glyphs (void *abstract_font,
/* XXX: Need to get the text clipped */
}
- // TODO - bold and italic text
- //
- // We could draw the text using ATSUI and get bold, italics
- // etc. for free, but ATSUI does a lot of text layout work
- // that we don't really need...
+ /* TODO - bold and italic text
+ *
+ * We could draw the text using ATSUI and get bold, italics
+ * etc. for free, but ATSUI does a lot of text layout work
+ * that we don't really need...
+ */
for (i = 0; i < num_glyphs; i++) {