g_once (®ister_resources_once, register_resources, NULL);
}
-
-int
-pango_glyph_string_num_glyphs (PangoGlyphString *glyphs)
-{
- int i, count;
-
- count = 0;
- for (i = 0; i < glyphs->num_glyphs; i++)
- {
- PangoGlyphInfo *gi = &glyphs->glyphs[i];
- if (gi->glyph != PANGO_GLYPH_EMPTY)
- {
- if (!(gi->glyph & PANGO_GLYPH_UNKNOWN_FLAG))
- count++;
- }
- }
-
- return count;
-}
-
void gsk_ensure_resources (void);
-int pango_glyph_string_num_glyphs (PangoGlyphString *glyphs) G_GNUC_PURE;
-
typedef struct _GskVulkanRender GskVulkanRender;
typedef struct _GskVulkanRenderPass GskVulkanRenderPass;