[directwrite] More fix

This commit is contained in:
Behdad Esfahbod 2019-01-18 13:45:33 -05:00
parent 9714d3ec5c
commit c2ea7a9da4
1 changed files with 2 additions and 2 deletions

View File

@ -769,7 +769,7 @@ retry_getglyphs:
/* Calculate visual-clusters. That's what we ship. */ /* Calculate visual-clusters. That's what we ship. */
for (unsigned int i = 0; i < glyphCount; i++) for (unsigned int i = 0; i < glyphCount; i++)
vis_clusters[i] = -1; vis_clusters[i] = (uint32_t) -1;
for (unsigned int i = 0; i < buffer->len; i++) for (unsigned int i = 0; i < buffer->len; i++)
{ {
uint32_t *p = uint32_t *p =
@ -777,7 +777,7 @@ retry_getglyphs:
*p = MIN (*p, buffer->info[i].cluster); *p = MIN (*p, buffer->info[i].cluster);
} }
for (unsigned int i = 1; i < glyphCount; i++) for (unsigned int i = 1; i < glyphCount; i++)
if (vis_clusters[i] == -1) if (vis_clusters[i] == (uint32_t) -1)
vis_clusters[i] = vis_clusters[i - 1]; vis_clusters[i] = vis_clusters[i - 1];
#undef utf16_index #undef utf16_index