Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
5c0adce1
T
Third Party Harfbuzz
项目概览
OpenHarmony
/
Third Party Harfbuzz
接近 2 年 前同步成功
通知
1
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看板
提交
5c0adce1
编写于
5月 20, 2009
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[HB] Rename harfbuzz-buffer to hb-buffer
上级
b857b49c
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
19 addition
and
19 deletion
+19
-19
src/Makefile.am
src/Makefile.am
+3
-2
src/hb-buffer-private.h
src/hb-buffer-private.h
+4
-4
src/hb-buffer.c
src/hb-buffer.c
+2
-4
src/hb-buffer.h
src/hb-buffer.h
+4
-4
src/hb-ot-layout-gsubgpos-private.h
src/hb-ot-layout-gsubgpos-private.h
+1
-1
src/hb-ot-layout-private.h
src/hb-ot-layout-private.h
+1
-1
src/hb-ot-layout.cc
src/hb-ot-layout.cc
+3
-2
src/hb-ot-layout.h
src/hb-ot-layout.h
+1
-1
未找到文件。
src/Makefile.am
浏览文件 @
5c0adce1
...
...
@@ -11,7 +11,8 @@ CXX = gcc $(GCCOPTS) -g -fno-rtti -fno-exceptions -Wabi -Wpadded -Wcast-align
noinst_LTLIBRARIES
=
libharfbuzz-1.la
HBSOURCES
=
\
harfbuzz-buffer.c
\
hb-buffer.c
\
hb-buffer-private.h
\
hb-private.h
\
hb-ot-layout.cc
\
hb-ot-layout-common-private.h
\
...
...
@@ -25,7 +26,7 @@ HBSOURCES = \
HBHEADERS
=
\
hb-common.h
\
h
arfbuzz
-buffer.h
\
h
b
-buffer.h
\
hb-ot-layout.h
\
$(NULL)
...
...
src/h
arfbuzz
-buffer-private.h
→
src/h
b
-buffer-private.h
浏览文件 @
5c0adce1
...
...
@@ -25,11 +25,11 @@
* Red Hat Author(s): Owen Taylor, Behdad Esfahbod
*/
#ifndef H
ARFBUZZ
_BUFFER_PRIVATE_H
#define H
ARFBUZZ
_BUFFER_PRIVATE_H
#ifndef H
B
_BUFFER_PRIVATE_H
#define H
B
_BUFFER_PRIVATE_H
#include "harfbuzz-impl.h"
#include "h
arfbuzz
-buffer.h"
#include "h
b
-buffer.h"
HB_BEGIN_HEADER
...
...
@@ -103,4 +103,4 @@ _hb_buffer_allocate_ligid( HB_Buffer buffer );
HB_END_HEADER
#endif
/* H
ARFBUZZ
_BUFFER_PRIVATE_H */
#endif
/* H
B
_BUFFER_PRIVATE_H */
src/h
arfbuzz
-buffer.c
→
src/h
b
-buffer.c
浏览文件 @
5c0adce1
...
...
@@ -26,9 +26,7 @@
*/
#include "harfbuzz-impl.h"
#include "harfbuzz-buffer-private.h"
#include "harfbuzz-gsub-private.h"
#include "harfbuzz-gpos-private.h"
#include "hb-buffer-private.h"
/* Here is how the buffer works internally:
*
...
...
@@ -161,7 +159,7 @@ hb_buffer_add_glyph (HB_Buffer buffer,
{
HB_Error
error
;
HB_GlyphItem
glyph
;
hb_buffer_ensure
(
buffer
,
buffer
->
in_length
+
1
);
glyph
=
&
buffer
->
in_string
[
buffer
->
in_length
];
...
...
src/h
arfbuzz
-buffer.h
→
src/h
b
-buffer.h
浏览文件 @
5c0adce1
...
...
@@ -25,8 +25,8 @@
* Red Hat Author(s): Owen Taylor, Behdad Esfahbod
*/
#ifndef H
ARFBUZZ
_BUFFER_H
#define H
ARFBUZZ
_BUFFER_H
#ifndef H
B
_BUFFER_H
#define H
B
_BUFFER_H
#include "hb-common.h"
...
...
@@ -65,7 +65,7 @@ typedef struct _hb_buffer_t {
unsigned
int
out_length
;
unsigned
int
in_pos
;
unsigned
int
out_pos
;
hb_bool_t
separate_out
;
HB_GlyphItem
in_string
;
HB_GlyphItem
out_string
;
...
...
@@ -91,4 +91,4 @@ hb_buffer_add_glyph (hb_buffer_t *buffer,
HB_END_DECLS
();
#endif
/* H
ARFBUZZ
_BUFFER_H */
#endif
/* H
B
_BUFFER_H */
src/hb-ot-layout-gsubgpos-private.h
浏览文件 @
5c0adce1
...
...
@@ -28,7 +28,7 @@
#define HB_OT_LAYOUT_GSUBGPOS_PRIVATE_H
#include "hb-ot-layout-gdef-private.h"
#include "h
arfbuzz
-buffer-private.h"
/* XXX */
#include "h
b
-buffer-private.h"
/* XXX */
#define APPLY_ARG_DEF \
...
...
src/hb-ot-layout-private.h
浏览文件 @
5c0adce1
...
...
@@ -31,7 +31,7 @@
#include "hb-ot-layout.h"
/* XXX */
#include "h
arfbuzz
-buffer.h"
#include "h
b
-buffer.h"
typedef
unsigned
int
hb_ot_layout_class_t
;
...
...
src/hb-ot-layout.cc
浏览文件 @
5c0adce1
...
...
@@ -28,6 +28,9 @@
#define HB_OT_LAYOUT_CC
/* XXX */
#include "hb-buffer-private.h"
#include "hb-ot-layout.h"
#include "hb-ot-layout-private.h"
...
...
@@ -36,8 +39,6 @@
#include "hb-ot-layout-gsub-private.h"
#include "hb-ot-layout-gpos-private.h"
/* XXX */
#include "harfbuzz-buffer-private.h"
#include <stdlib.h>
#include <string.h>
...
...
src/hb-ot-layout.h
浏览文件 @
5c0adce1
...
...
@@ -28,7 +28,7 @@
#define HB_OT_LAYOUT_H
#include "hb-common.h"
#include "h
arfbuzz
-buffer.h"
#include "h
b
-buffer.h"
HB_BEGIN_DECLS
();
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录