1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-09 05:01:02 -08:00

Remove unneeded version checks (bug#28222)

* src/macfont.h (CGContextSetFontSmoothingStyle): Remove version
check.
* src/macfont.m (macfont_draw): Remove version check, and test for
existence of CGContextSetFontSmoothingStyle.
This commit is contained in:
Alan Third 2017-08-31 20:42:35 +01:00
parent 5fe41a23d8
commit e6a2b4c2df
2 changed files with 2 additions and 8 deletions

View file

@ -83,9 +83,6 @@ extern void mac_register_font_driver (struct frame *f);
extern void *macfont_get_nsctfont (struct font *font);
extern void macfont_update_antialias_threshold (void);
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1080
/* This is an undocumented function that is probably not available
pre-10.8. */
/* This is an undocumented function. */
extern void CGContextSetFontSmoothingStyle(CGContextRef, int)
__attribute__((weak_import));
#endif

View file

@ -2888,14 +2888,11 @@ macfont_draw (struct glyph_string *s, int from, int to, int x, int y,
if (no_antialias_p)
CGContextSetShouldAntialias (context, false);
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1080
if (!NILP (ns_use_thin_smoothing)
&& CGContextSetFontSmoothingStyle != NULL)
if (!NILP (ns_use_thin_smoothing))
{
CGContextSetShouldSmoothFonts(context, YES);
CGContextSetFontSmoothingStyle(context, 16);
}
#endif
CGContextSetTextMatrix (context, atfm);
CGContextSetTextPosition (context, text_position.x, text_position.y);