Behdad Esfahbod
744970af4d
[API] Add support for vertical text
...
Design not final yet, and in fact I'm going to change it immediately,
but this is an standalone change for itself.
2011-05-17 17:12:34 -04:00
Behdad Esfahbod
5be7d047f6
Check for mmap()
...
Apparently there exist systems with mprotect(), but not mmap()?
2011-05-17 15:56:31 -04:00
Behdad Esfahbod
4053f3f788
Cosmetic
2011-05-16 17:03:27 -04:00
Behdad Esfahbod
a0359485c9
Minor
2011-05-16 15:07:48 -04:00
Behdad Esfahbod
92de53ea45
[test/buffer] Add more tests for nil buffer
2011-05-16 12:24:56 -04:00
Behdad Esfahbod
065fb38c9a
[test/ot-tag] More tests
2011-05-13 23:04:46 -04:00
Behdad Esfahbod
1a64f6e19a
[API] Add HB_LANGUAGE_INVALID
2011-05-13 22:55:32 -04:00
Behdad Esfahbod
40b5c2e86c
[test/test-ot-tag] Test hb-ot-tag.h, fix many bugs
...
I'm in awe with how many bugs this test revealed. All fixed.
2011-05-13 22:46:36 -04:00
Behdad Esfahbod
7fc5a30cb4
[API] Add hb_face_make/is_immutable()
2011-05-12 17:48:20 -04:00
Behdad Esfahbod
0fd8c2f1be
[API] Make get_glyph() callback return a boolean
...
We need to know whether the glyph exists, so we can fallback to
composing / decomposing. Assuming that glyph==0 means "doesn't exist"
wouldn't work for applications like Pango that want to use different
"doesn't exist" glyph codes for different characters. An explicit
return value fixes that.
2011-05-12 15:14:13 -04:00
Behdad Esfahbod
8e07f93ab4
[test/shape] Check shape output
2011-05-12 14:27:44 -04:00
Behdad Esfahbod
23d2432219
[test] Add test-shape.c. Oops
2011-05-12 10:53:57 -04:00
Behdad Esfahbod
c098c3acc8
[test/blob] Use MAP_ANON instead of MAP_ANONYMOUS
...
More portable.
2011-05-12 10:49:30 -04:00
Behdad Esfahbod
8329eb7c6c
[test/shape] Add simplest test for hb_shape()
2011-05-12 01:39:17 -04:00
Behdad Esfahbod
f2c1dd4f74
[test/font] Test font_funcs subclassing
2011-05-12 00:46:53 -04:00
Behdad Esfahbod
14f1e81b77
[test/font] Test empty funcs
2011-05-12 00:18:28 -04:00
Behdad Esfahbod
2ca0b5ae1e
[test/font] Test more
2011-05-12 00:04:48 -04:00
Behdad Esfahbod
7033518f75
[API] Pass face to get_table()
2011-05-11 23:31:15 -04:00
Behdad Esfahbod
ea93e7b27c
[test/font] More tests
2011-05-11 23:22:55 -04:00
Behdad Esfahbod
cdb153175f
[test/font] More tests
2011-05-11 23:12:58 -04:00
Behdad Esfahbod
74d9fa3d9a
[test/font] More get_empty() tests
2011-05-11 23:07:47 -04:00
Behdad Esfahbod
db9f4eb4e0
[test/font] Test get_face() / get_parent()
2011-05-11 23:06:02 -04:00
Behdad Esfahbod
606923bb43
[test/font] Add test_font_properties()
2011-05-11 23:05:02 -04:00
Behdad Esfahbod
da603e8038
[test/font] Start adding tests for hb-font.h
2011-05-11 22:58:54 -04:00
Behdad Esfahbod
9a14688e40
[API] Rename hb_face_create_for_data() to hb_face_create()
2011-05-11 22:49:29 -04:00
Behdad Esfahbod
b8477e1da2
[test] Add tests for _get_empty() funcs
2011-05-11 21:12:44 -04:00
Behdad Esfahbod
80a6833b03
[API] Add hb_*_get_empty() for all objects
2011-05-11 18:21:58 -04:00
Behdad Esfahbod
7aa12ebdff
[unicode] Simplify method setting
2011-05-11 11:55:11 -04:00
Behdad Esfahbod
74f1d896f2
Add hb_font_make/is_immutable()
2011-05-10 19:39:32 -04:00
Behdad Esfahbod
0c2ec1d78b
[test] Always initialize gthread such that our mutex() stuff is tested
...
Now the test/object test deadlocks as expected. Fix coming.
2011-05-10 19:11:52 -04:00
Behdad Esfahbod
6a9093cc48
[test/object] Test user_data with destroy() callback that calls user_data
...
Exposes the non-atomicity of user_data opertaions at this time because
we call finish() while still locked and modifying the object. In fact,
I'm surprised that it doesn't deadlock. It should.
2011-05-10 19:00:07 -04:00
Behdad Esfahbod
f82c186304
[test/blob] Fix bug in test
2011-05-10 17:48:34 -04:00
Behdad Esfahbod
785d23acd0
[test/blob] Add create_sub_blob()
2011-05-10 17:41:44 -04:00
Behdad Esfahbod
0617b15582
[test] Test blob API
2011-05-10 17:37:08 -04:00
Behdad Esfahbod
1c9f8717eb
[API] Simplify blob API, remove lock
2011-05-06 22:59:42 -04:00
Behdad Esfahbod
34fb5521a5
[API] Add hb_language_get_default()
...
It uses locale information to detect default language. It's used by
hb_shape() whenever language is not set on the buffer.
Not sure how to properly test it in the test suite. Tested by observing
that with DejaVu Sans we select the proper local glyph version for U+431
under Serbian locale. See http://www.pango.org/ScriptGallery
2011-05-06 00:05:08 -04:00
Behdad Esfahbod
c78f448558
[API] Add version macros and functions
...
Step version up to 0.5.0.
Also, fix to pass "make distcheck"
2011-05-05 21:31:04 -04:00
Behdad Esfahbod
e6a5b88c01
Fix build with older glib
2011-05-05 16:24:42 -04:00
Behdad Esfahbod
811482bd65
Replace hb_map_t with hb_set_t which is more intuitive and flexible
2011-05-05 13:21:04 -04:00
Behdad Esfahbod
72657e4ce7
[API] Make hb_font_create() take a face and reference it
2011-05-02 20:47:23 -04:00
Behdad Esfahbod
db99589529
[test/object] Add test for object lifecycle stuff
...
Revealed many bugs in the (untested and known buggy) user_data
support.
2011-05-02 19:52:47 -04:00
Behdad Esfahbod
f74d6c81f1
Cosmetic
2011-05-02 19:52:32 -04:00
Behdad Esfahbod
cd361ec9a1
Cosmetic
2011-05-02 16:54:05 -04:00
Behdad Esfahbod
c784c67a28
[unicode] Make _get_parent() return _nil object instead of NULL
2011-05-02 15:59:57 -04:00
Behdad Esfahbod
07e22779ab
[test/unicode] Add script roundtrip tests for glib and ICU
2011-05-02 14:58:36 -04:00
Behdad Esfahbod
7cda65935c
[test/unicode] Better test chainup
2011-05-02 14:33:53 -04:00
Behdad Esfahbod
250c59225e
[test/unicode] Port the _custom test to test all property setters
2011-05-02 14:21:30 -04:00
Behdad Esfahbod
e74b5b339a
[test/unicode] Test Unicode 5.2+ but don't fail
2011-05-02 14:03:55 -04:00
Behdad Esfahbod
c763aa42b4
[test/buffer] Clean up testing
...
Getting the hang of how to cleanly use gtest.
2011-05-02 13:52:17 -04:00
Behdad Esfahbod
819e9d9e53
Minor
2011-05-02 12:38:54 -04:00