mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-04-21 07:40:43 +02:00
Use C-style comments rather than C++-style
This commit is contained in:
parent
d0e02a948e
commit
dba214b944
5 changed files with 22 additions and 20 deletions
|
|
@ -35,8 +35,8 @@
|
|||
|
||||
#include <math.h>
|
||||
|
||||
// #define PIXMAN_CONVOLUTION
|
||||
// #define PIXMAN_INDEXED_FORMATS
|
||||
/* #define PIXMAN_CONVOLUTION */
|
||||
/* #define PIXMAN_INDEXED_FORMATS */
|
||||
|
||||
static Bool
|
||||
PictureTransformPoint3d (pixman_transform_t *transform,
|
||||
|
|
|
|||
|
|
@ -72,8 +72,8 @@ typedef pixman_triangle_t xTriangle;
|
|||
#define FB_SHIFT IC_SHIFT
|
||||
#define FB_MASK IC_MASK
|
||||
#define FB_ALLONES IC_ALLONES
|
||||
#define FbMaskBits IcMaskBits
|
||||
*/
|
||||
//#define FbMaskBits IcMaskBits
|
||||
|
||||
/* XXX: We changed some function and field names which makes for some
|
||||
* ugly hacks... */
|
||||
|
|
|
|||
|
|
@ -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++) {
|
||||
|
|
|
|||
|
|
@ -150,7 +150,7 @@ static inline int cairo_to_directfb_format(cairo_format_t format ) {
|
|||
return DSPF_A1;
|
||||
default:
|
||||
{
|
||||
//assert(0);
|
||||
/*assert(0);*/
|
||||
return DSPF_UNKNOWN;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -73,10 +73,11 @@ _cairo_quartz_surface_acquire_source_image(void *abstract_surface,
|
|||
UInt32 imageDataSize, rowBytes;
|
||||
CGDataProviderRef dataProvider;
|
||||
|
||||
// We keep a cached (cairo_image_surface_t *) in the cairo_quartz_surface_t
|
||||
// struct. If the window is ever drawn to without going through Cairo, then
|
||||
// we would need to refetch the pixel data from the window into the cached
|
||||
// image surface.
|
||||
/* We keep a cached (cairo_image_surface_t *) in the cairo_quartz_surface_t
|
||||
* struct. If the window is ever drawn to without going through Cairo, then
|
||||
* we would need to refetch the pixel data from the window into the cached
|
||||
* image surface.
|
||||
*/
|
||||
if (surface->image) {
|
||||
cairo_surface_reference(&surface->image->base);
|
||||
|
||||
|
|
@ -257,7 +258,7 @@ cairo_surface_t *cairo_quartz_surface_create(CGContextRef context,
|
|||
surface->clip_region = NULL;
|
||||
surface->flipped = flipped;
|
||||
|
||||
// Set up the image surface which Cairo draws into and we blit to & from.
|
||||
/* Set up the image surface which Cairo draws into and we blit to & from. */
|
||||
void *foo;
|
||||
_cairo_quartz_surface_acquire_source_image(surface, &surface->image, &foo);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue