2021-01-16 02:52:57 +01:00
|
|
|
/*
|
|
|
|
* Copyright © 2021 Behdad Esfahbod.
|
|
|
|
*
|
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, without written agreement and without
|
|
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
|
|
* software and its documentation for any purpose, provided that the
|
|
|
|
* above copyright notice and the following two paragraphs appear in
|
|
|
|
* all copies of this software.
|
|
|
|
*
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
*/
|
|
|
|
|
2022-06-03 10:54:33 +02:00
|
|
|
#ifndef HB_OT_SHAPER_SYLLABIC_HH
|
|
|
|
#define HB_OT_SHAPER_SYLLABIC_HH
|
2021-01-16 02:52:57 +01:00
|
|
|
|
|
|
|
#include "hb.hh"
|
|
|
|
|
2022-06-03 10:56:41 +02:00
|
|
|
#include "hb-ot-shaper.hh"
|
2021-01-16 02:52:57 +01:00
|
|
|
|
|
|
|
|
2022-11-17 01:49:44 +01:00
|
|
|
HB_INTERNAL bool
|
2021-01-16 03:13:47 +01:00
|
|
|
hb_syllabic_insert_dotted_circles (hb_font_t *font,
|
|
|
|
hb_buffer_t *buffer,
|
2021-01-18 20:47:25 +01:00
|
|
|
unsigned int broken_syllable_type,
|
|
|
|
unsigned int dottedcircle_category,
|
2021-06-05 14:35:28 +02:00
|
|
|
int repha_category = -1,
|
|
|
|
int dottedcircle_position = -1);
|
2021-01-16 03:13:47 +01:00
|
|
|
|
2022-11-17 01:49:44 +01:00
|
|
|
HB_INTERNAL bool
|
2022-06-04 18:55:50 +02:00
|
|
|
hb_syllabic_clear_var (const hb_ot_shape_plan_t *plan,
|
|
|
|
hb_font_t *font,
|
|
|
|
hb_buffer_t *buffer);
|
|
|
|
|
2021-01-16 03:13:47 +01:00
|
|
|
|
2022-06-03 10:54:33 +02:00
|
|
|
#endif /* HB_OT_SHAPER_SYLLABIC_HH */
|