Bug 1852321 - Fix wpt tests in jsshell for sync changes, r=Sasha
[gecko.git] / gfx / harfbuzz / src / hb-ot-color.h
blob22ee497e388bf326483353b5ab74ea2e0ecd1574
1 /*
2 * Copyright © 2016 Google, Inc.
3 * Copyright © 2018 Khaled Hosny
4 * Copyright © 2018 Ebrahim Byagowi
6 * This is part of HarfBuzz, a text shaping library.
8 * Permission is hereby granted, without written agreement and without
9 * license or royalty fees, to use, copy, modify, and distribute this
10 * software and its documentation for any purpose, provided that the
11 * above copyright notice and the following two paragraphs appear in
12 * all copies of this software.
14 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
15 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
16 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
17 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
18 * DAMAGE.
20 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
21 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
22 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
23 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
24 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
26 * Google Author(s): Sascha Brawer, Behdad Esfahbod
29 #if !defined(HB_OT_H_IN) && !defined(HB_NO_SINGLE_HEADER_ERROR)
30 #error "Include <hb-ot.h> instead."
31 #endif
33 #ifndef HB_OT_COLOR_H
34 #define HB_OT_COLOR_H
36 #include "hb.h"
37 #include "hb-ot-name.h"
39 HB_BEGIN_DECLS
43 * Color palettes.
46 HB_EXTERN hb_bool_t
47 hb_ot_color_has_palettes (hb_face_t *face);
49 HB_EXTERN unsigned int
50 hb_ot_color_palette_get_count (hb_face_t *face);
52 HB_EXTERN hb_ot_name_id_t
53 hb_ot_color_palette_get_name_id (hb_face_t *face,
54 unsigned int palette_index);
56 HB_EXTERN hb_ot_name_id_t
57 hb_ot_color_palette_color_get_name_id (hb_face_t *face,
58 unsigned int color_index);
60 /**
61 * hb_ot_color_palette_flags_t:
62 * @HB_OT_COLOR_PALETTE_FLAG_DEFAULT: Default indicating that there is nothing special
63 * to note about a color palette.
64 * @HB_OT_COLOR_PALETTE_FLAG_USABLE_WITH_LIGHT_BACKGROUND: Flag indicating that the color
65 * palette is appropriate to use when displaying the font on a light background such as white.
66 * @HB_OT_COLOR_PALETTE_FLAG_USABLE_WITH_DARK_BACKGROUND: Flag indicating that the color
67 * palette is appropriate to use when displaying the font on a dark background such as black.
69 * Flags that describe the properties of color palette.
71 * Since: 2.1.0
73 typedef enum { /*< flags >*/
74 HB_OT_COLOR_PALETTE_FLAG_DEFAULT = 0x00000000u,
75 HB_OT_COLOR_PALETTE_FLAG_USABLE_WITH_LIGHT_BACKGROUND = 0x00000001u,
76 HB_OT_COLOR_PALETTE_FLAG_USABLE_WITH_DARK_BACKGROUND = 0x00000002u
77 } hb_ot_color_palette_flags_t;
79 HB_EXTERN hb_ot_color_palette_flags_t
80 hb_ot_color_palette_get_flags (hb_face_t *face,
81 unsigned int palette_index);
83 HB_EXTERN unsigned int
84 hb_ot_color_palette_get_colors (hb_face_t *face,
85 unsigned int palette_index,
86 unsigned int start_offset,
87 unsigned int *color_count, /* IN/OUT. May be NULL. */
88 hb_color_t *colors /* OUT. May be NULL. */);
92 * Color layers.
95 HB_EXTERN hb_bool_t
96 hb_ot_color_has_layers (hb_face_t *face);
98 /**
99 * hb_ot_color_layer_t:
100 * @glyph: the glyph ID of the layer
101 * @color_index: the palette color index of the layer
103 * Pairs of glyph and color index.
105 * A color index of 0xFFFF does not refer to a palette
106 * color, but indicates that the foreground color should
107 * be used.
109 * Since: 2.1.0
111 typedef struct hb_ot_color_layer_t {
112 hb_codepoint_t glyph;
113 unsigned int color_index;
114 } hb_ot_color_layer_t;
116 HB_EXTERN unsigned int
117 hb_ot_color_glyph_get_layers (hb_face_t *face,
118 hb_codepoint_t glyph,
119 unsigned int start_offset,
120 unsigned int *layer_count, /* IN/OUT. May be NULL. */
121 hb_ot_color_layer_t *layers /* OUT. May be NULL. */);
123 /* COLRv1 */
125 HB_EXTERN hb_bool_t
126 hb_ot_color_has_paint (hb_face_t *face);
128 HB_EXTERN hb_bool_t
129 hb_ot_color_glyph_has_paint (hb_face_t *face,
130 hb_codepoint_t glyph);
133 * SVG
136 HB_EXTERN hb_bool_t
137 hb_ot_color_has_svg (hb_face_t *face);
139 HB_EXTERN hb_blob_t *
140 hb_ot_color_glyph_reference_svg (hb_face_t *face, hb_codepoint_t glyph);
143 * PNG: CBDT or sbix
146 HB_EXTERN hb_bool_t
147 hb_ot_color_has_png (hb_face_t *face);
149 HB_EXTERN hb_blob_t *
150 hb_ot_color_glyph_reference_png (hb_font_t *font, hb_codepoint_t glyph);
153 HB_END_DECLS
155 #endif /* HB_OT_COLOR_H */