Advertisement
Guest User

Untitled

a guest
Jul 29th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. 1752 if (options->base.hint_style == CAIRO_HINT_STYLE_DEFAULT)
  2. 1753 options->base.hint_style = other->base.hint_style;
  3. 1754
  4. 1755 if (other->base.hint_style == CAIRO_HINT_STYLE_NONE)
  5. 1756 options->base.hint_style = CAIRO_HINT_STYLE_NONE;
  6. 1757
  7. 1758 if (options->base.lcd_filter == CAIRO_LCD_FILTER_DEFAULT)
  8. 1759 options->base.lcd_filter = other->base.lcd_filter;
  9. 1760
  10. 1761 if (other->base.lcd_filter == CAIRO_LCD_FILTER_NONE)
  11. 1762 options->base.lcd_filter = CAIRO_LCD_FILTER_NONE;
  12. 1763
  13. 1764 if (options->base.antialias == CAIRO_ANTIALIAS_NONE) {
  14. 1765 if (options->base.hint_style == CAIRO_HINT_STYLE_NONE)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement