Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
8e3715f8
T
Third Party Harfbuzz
项目概览
OpenHarmony
/
Third Party Harfbuzz
大约 1 年 前同步成功
通知
0
Star
18
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Harfbuzz
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
8e3715f8
编写于
4月 23, 2012
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Minor
上级
d2984a24
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
8 addition
and
9 deletion
+8
-9
src/hb-buffer-private.hh
src/hb-buffer-private.hh
+1
-1
src/hb-buffer.cc
src/hb-buffer.cc
+1
-1
src/hb-graphite2.cc
src/hb-graphite2.cc
+2
-3
src/hb-ot-shape-complex-arabic.cc
src/hb-ot-shape-complex-arabic.cc
+2
-2
src/hb-ot-shape-complex-misc.cc
src/hb-ot-shape-complex-misc.cc
+2
-2
未找到文件。
src/hb-buffer-private.hh
浏览文件 @
8e3715f8
...
...
@@ -104,7 +104,7 @@ struct _hb_buffer_t {
const
uint16_t
*
glyph_data_be
);
HB_INTERNAL
void
replace_glyphs
(
unsigned
int
num_in
,
unsigned
int
num_out
,
const
uint16
_t
*
glyph_data
);
const
hb_codepoint
_t
*
glyph_data
);
HB_INTERNAL
void
replace_glyph
(
hb_codepoint_t
glyph_index
);
/* Makes a copy of the glyph at idx to output and replace glyph_index */
HB_INTERNAL
void
output_glyph
(
hb_codepoint_t
glyph_index
);
...
...
src/hb-buffer.cc
浏览文件 @
8e3715f8
...
...
@@ -271,7 +271,7 @@ hb_buffer_t::replace_glyphs_be16 (unsigned int num_in,
void
hb_buffer_t
::
replace_glyphs
(
unsigned
int
num_in
,
unsigned
int
num_out
,
const
uint
16
_t
*
glyph_data
)
const
uint
32
_t
*
glyph_data
)
{
if
(
!
make_room_for
(
num_in
,
num_out
))
return
;
...
...
src/hb-graphite2.cc
浏览文件 @
8e3715f8
...
...
@@ -247,11 +247,10 @@ _hb_graphite_shape (hb_font_t *font,
features
++
;
}
unsigned
short
*
gids
=
NULL
;
hb_codepoint_t
*
gids
=
NULL
,
*
pg
;
hb_gr_cluster_t
*
clusters
=
NULL
;
gr_segment
*
seg
=
NULL
;
uint32_t
*
text
=
NULL
;
unsigned
short
*
pg
;
const
gr_slot
*
is
;
unsigned
int
ci
=
0
,
ic
=
0
;
float
curradvx
=
0.
,
curradvy
=
0.
;
...
...
@@ -280,7 +279,7 @@ _hb_graphite_shape (hb_font_t *font,
clusters
=
(
hb_gr_cluster_t
*
)
calloc
(
charlen
,
sizeof
(
hb_gr_cluster_t
));
if
(
!
glyphlen
||
!
clusters
)
goto
dieout
;
gids
=
(
uint16_t
*
)
malloc
(
glyphlen
*
sizeof
(
uint16
_t
));
gids
=
(
hb_codepoint_t
*
)
malloc
(
glyphlen
*
sizeof
(
hb_codepoint
_t
));
if
(
!
gids
)
goto
dieout
;
pg
=
gids
;
...
...
src/hb-ot-shape-complex-arabic.cc
浏览文件 @
8e3715f8
...
...
@@ -221,8 +221,8 @@ arabic_fallback_shape (hb_font_t *font, hb_buffer_t *buffer)
/* Mandatory ligatures */
buffer
->
clear_output
();
for
(
buffer
->
idx
=
0
;
buffer
->
idx
+
1
<
count
;)
{
uint16
_t
ligature
=
get_ligature
(
buffer
->
info
[
buffer
->
idx
].
codepoint
,
buffer
->
info
[
buffer
->
idx
+
1
].
codepoint
);
hb_codepoint
_t
ligature
=
get_ligature
(
buffer
->
info
[
buffer
->
idx
].
codepoint
,
buffer
->
info
[
buffer
->
idx
+
1
].
codepoint
);
if
(
likely
(
!
ligature
)
||
!
(
hb_font_get_glyph
(
font
,
ligature
,
0
,
&
glyph
)))
{
buffer
->
next_glyph
();
continue
;
...
...
src/hb-ot-shape-complex-misc.cc
浏览文件 @
8e3715f8
...
...
@@ -148,8 +148,8 @@ _hb_ot_shape_complex_setup_masks_thai (hb_ot_map_t *map, hb_buffer_t *buffer, hb
}
/* Is SARA AM. Decompose and reorder. */
uint16_t
decomposed
[
2
]
=
{
uint16
_t
(
NIKHAHIT_FROM_SARA_AM
(
u
)),
uint16
_t
(
SARA_AA_FROM_SARA_AM
(
u
))};
hb_codepoint_t
decomposed
[
2
]
=
{
hb_codepoint
_t
(
NIKHAHIT_FROM_SARA_AM
(
u
)),
hb_codepoint
_t
(
SARA_AA_FROM_SARA_AM
(
u
))};
buffer
->
replace_glyphs
(
1
,
2
,
decomposed
);
if
(
unlikely
(
buffer
->
in_error
))
return
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录