[RTL/TextServer] Add baseline inline alignment mode for objects and RTL tables.

This commit is contained in:
bruvzg
2022-12-08 22:01:07 +02:00
parent 15631e24f7
commit 53c76fa5d1
22 changed files with 108 additions and 45 deletions

View File

@@ -86,6 +86,7 @@ enum InlineAlignment {
// Image alignment points.
INLINE_ALIGNMENT_TOP_TO = 0b0000,
INLINE_ALIGNMENT_CENTER_TO = 0b0001,
INLINE_ALIGNMENT_BASELINE_TO = 0b0011,
INLINE_ALIGNMENT_BOTTOM_TO = 0b0010,
INLINE_ALIGNMENT_IMAGE_MASK = 0b0011,