Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Bakker <jeroen@blender.org>2021-11-23 16:01:01 +0300
committerJeroen Bakker <jeroen@blender.org>2021-11-23 16:01:01 +0300
commitfc502a8710d13016123f7df4d83e461c3d1e7e83 (patch)
treeabac56d4f0ba03ee63c9f84f401c8e20f9c3f904 /source/blender/blenfont/intern/blf_glyph.c
parentb65df10346f5fe47c881b183901e2d7eff775848 (diff)
parentd944b969f0227c01df08dab8c9527e72919776a1 (diff)
Merge branch 'temp-ghost-vulkan-backend' into tmp-vulkan
Diffstat (limited to 'source/blender/blenfont/intern/blf_glyph.c')
-rw-r--r--source/blender/blenfont/intern/blf_glyph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenfont/intern/blf_glyph.c b/source/blender/blenfont/intern/blf_glyph.c
index a9d00151e99..5f14ef433e9 100644
--- a/source/blender/blenfont/intern/blf_glyph.c
+++ b/source/blender/blenfont/intern/blf_glyph.c
@@ -76,7 +76,7 @@ static FT_Fixed to_16dot16(double val)
/**
* Find a glyph cache that matches a size, DPI & styles.
*/
-GlyphCacheBLF *blf_glyph_cache_find(FontBLF *font, unsigned int size, unsigned int dpi)
+GlyphCacheBLF *blf_glyph_cache_find(FontBLF *font, float size, unsigned int dpi)
{
GlyphCacheBLF *gc = (GlyphCacheBLF *)font->cache.first;
while (gc) {