Fix Build Warnings in blf_font.c

Function made static, unused argument, type conversion

Introduced in 9d77b5a0ed

Own Code.
This commit is contained in:
Harley Acheson 2022-08-04 14:40:11 -07:00
parent 9d77b5a0ed
commit 8b46731396
Notes: blender-bot 2023-02-14 11:29:52 +01:00
Referenced by commit 5b8143287b, Fix: Build error after recent commit
1 changed files with 5 additions and 5 deletions

View File

@ -81,10 +81,10 @@ static void blf_face_finalizer(void *object)
}
/* Called in response to FTC_Manager_LookupFace. Add a face to our font. */
FT_Error blf_cache_face_requester(FTC_FaceID faceID,
FT_Library lib,
FT_Pointer reqData,
FT_Face *face)
static FT_Error blf_cache_face_requester(FTC_FaceID faceID,
FT_Library lib,
FT_Pointer UNUSED(reqData),
FT_Face *face)
{
FontBLF *font = (FontBLF *)faceID;
int err = FT_Err_Cannot_Open_Resource;
@ -1526,7 +1526,7 @@ bool blf_font_size(FontBLF *font, float size, unsigned int dpi)
}
/* FreeType uses fixed-point integers in 64ths. */
FT_F26Dot6 ft_size = lroundf(size * 64.0f);
FT_UInt ft_size = lroundf(size * 64.0f);
/* Adjust our new size to be on even 64ths. */
size = (float)ft_size / 64.0f;