Use new HashMap implementation in the TextServer, and Font.
This commit is contained in:
parent
edda6ee9f8
commit
6783d55ce4
5 changed files with 25 additions and 24 deletions
|
|
@ -2769,7 +2769,7 @@ Vector2 TextServerAdvanced::font_get_kerning(const RID &p_font_rid, int64_t p_si
|
|||
|
||||
ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), Vector2());
|
||||
|
||||
const Map<Vector2i, Vector2> &kern = fd->cache[size]->kerning_map;
|
||||
const HashMap<Vector2i, Vector2, VariantHasher, VariantComparator> &kern = fd->cache[size]->kerning_map;
|
||||
|
||||
if (kern.has(p_glyph_pair)) {
|
||||
if (fd->msdf) {
|
||||
|
|
@ -2827,7 +2827,7 @@ bool TextServerAdvanced::font_has_char(const RID &p_font_rid, int64_t p_char) co
|
|||
if (fd->cache.is_empty()) {
|
||||
ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, fd->msdf ? Vector2i(fd->msdf_source_size, 0) : Vector2i(16, 0)), false);
|
||||
}
|
||||
FontDataForSizeAdvanced *at_size = fd->cache.front()->get();
|
||||
FontDataForSizeAdvanced *at_size = fd->cache.begin()->value;
|
||||
|
||||
#ifdef MODULE_FREETYPE_ENABLED
|
||||
if (at_size && at_size->face) {
|
||||
|
|
@ -2845,7 +2845,7 @@ String TextServerAdvanced::font_get_supported_chars(const RID &p_font_rid) const
|
|||
if (fd->cache.is_empty()) {
|
||||
ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, fd->msdf ? Vector2i(fd->msdf_source_size, 0) : Vector2i(16, 0)), String());
|
||||
}
|
||||
FontDataForSizeAdvanced *at_size = fd->cache.front()->get();
|
||||
FontDataForSizeAdvanced *at_size = fd->cache.begin()->value;
|
||||
|
||||
String chars;
|
||||
#ifdef MODULE_FREETYPE_ENABLED
|
||||
|
|
@ -4575,7 +4575,7 @@ bool TextServerAdvanced::shaped_text_update_justification_ops(const RID &p_shape
|
|||
|
||||
Glyph *sd_glyphs = sd->glyphs.ptrw();
|
||||
int sd_size = sd->glyphs.size();
|
||||
if (sd->jstops.size() > 0) {
|
||||
if (!sd->jstops.is_empty()) {
|
||||
for (int i = 0; i < sd_size; i++) {
|
||||
if (sd_glyphs[i].count > 0) {
|
||||
char32_t c = sd->text[sd_glyphs[i].start - sd->start];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue