Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Vincent Wei
harfbuzz
Commits
435b1878
Unverified
Commit
435b1878
authored
6 years ago
by
Ebrahim Byagowi
Committed by
GitHub
6 years ago
Browse files
Options
Download
Email Patches
Plain Diff
Rename UINT24 to HBUINT24 for consistency (#983)
parent
3737c652
master
arabic-table-x
bot-check
coverity_scan
decltype
inttype-constructors
iter
metrics
rand
rvalue-reference
test-str-literal-constness
typename-outside-template
use-sinhala
var-subset
2.3.1
2.3.0
2.2.0
2.1.3
2.1.2
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0
1.9.0
1.8.8
1.8.7
1.8.6
1.8.5
1.8.4
1.8.3
1.8.2
1.8.1
1.8.0
1.7.7
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/hb-open-type-private.hh
+1
-1
src/hb-open-type-private.hh
src/hb-ot-cmap-table.hh
+3
-3
src/hb-ot-cmap-table.hh
src/hb-ot-layout-common-private.hh
+1
-1
src/hb-ot-layout-common-private.hh
with
5 additions
and
5 deletions
+5
-5
src/hb-open-type-private.hh
View file @
435b1878
...
...
@@ -672,7 +672,7 @@ typedef IntType<uint16_t, 2> HBUINT16; /* 16-bit unsigned integer. */
typedef
IntType
<
int16_t
,
2
>
HBINT16
;
/* 16-bit signed integer. */
typedef
IntType
<
uint32_t
,
4
>
HBUINT32
;
/* 32-bit unsigned integer. */
typedef
IntType
<
int32_t
,
4
>
HBINT32
;
/* 32-bit signed integer. */
typedef
IntType
<
uint32_t
,
3
>
UINT24
;
/* 24-bit unsigned integer. */
typedef
IntType
<
uint32_t
,
3
>
HB
UINT24
;
/* 24-bit unsigned integer. */
/* 16-bit signed integer (HBINT16) that describes a quantity in FUnits. */
typedef
HBINT16
FWORD
;
...
...
This diff is collapsed.
Click to expand it.
src/hb-ot-cmap-table.hh
View file @
435b1878
...
...
@@ -328,7 +328,7 @@ struct UnicodeValueRange
return_trace
(
c
->
check_struct
(
this
));
}
UINT24
startUnicodeValue
;
/* First value in this range. */
HB
UINT24
startUnicodeValue
;
/* First value in this range. */
HBUINT8
additionalCount
;
/* Number of additional values in this
* range. */
public:
...
...
@@ -350,7 +350,7 @@ struct UVSMapping
return_trace
(
c
->
check_struct
(
this
));
}
UINT24
unicodeValue
;
/* Base Unicode value of the UVS */
HB
UINT24
unicodeValue
;
/* Base Unicode value of the UVS */
GlyphID
glyphID
;
/* Glyph ID of the UVS */
public:
DEFINE_SIZE_STATIC
(
5
);
...
...
@@ -392,7 +392,7 @@ struct VariationSelectorRecord
nonDefaultUVS
.
sanitize
(
c
,
base
));
}
UINT24
varSelector
;
/* Variation selector. */
HB
UINT24
varSelector
;
/* Variation selector. */
LOffsetTo
<
DefaultUVS
>
defaultUVS
;
/* Offset to Default UVS Table. May be 0. */
LOffsetTo
<
NonDefaultUVS
>
...
...
This diff is collapsed.
Click to expand it.
src/hb-ot-layout-common-private.hh
View file @
435b1878
...
...
@@ -449,7 +449,7 @@ struct FeatureParamsCharacterVariants
* user-interface labels for the
* feature parameters. (Must be zero
* if numParameters is zero.) */
ArrayOf
<
UINT24
>
ArrayOf
<
HB
UINT24
>
characters
;
/* Array of the Unicode Scalar Value
* of the characters for which this
* feature provides glyph variants.
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help