~ubuntu-branches/ubuntu/intrepid/cairo/intrepid-updates

« back to all changes in this revision

Viewing changes to src/cairo-wideint-type-private.h

  • Committer: Bazaar Package Importer
  • Author(s): Fabien Tassin
  • Date: 2008-09-25 16:22:33 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20080925162233-btx61ymk181i7mcc
Tags: 1.7.6-0ubuntu1
* New upstream version. Most noticable changes are:
  - some API changes with especially the removal of
    cairo_font_options_set_lcd_filter and cairo_font_options_get_lcd_filter
  - xlib: Faster bookkeeping
  - PS: Fix gradients with non-constant alpha
  - Fix deadlock in user-font code
* debian/patches/00list: Remove 03_from_git_fix_lcd_filter_default.dpatch,
  add debian/patches/03_fix_ftbfs_withing_xcb.dpatch
* debian/libcairo2.symbols, debian/libcairo-directfb2.symbols: update
  list of symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
# ifndef HAVE_UINT64_T
60
60
#  define HAVE_UINT64_T 1
61
61
# endif
62
 
# ifndef INT16_MIN
63
 
#  define INT16_MIN     (-32767-1)
64
 
# endif
65
 
# ifndef INT16_MAX
66
 
#  define INT16_MAX     (32767)
67
 
# endif
68
 
# ifndef UINT16_MAX
69
 
#  define UINT16_MAX    (65535)
70
 
# endif
71
 
# ifndef INT32_MIN
72
 
#  define INT32_MIN     (-2147483647-1)
73
 
# endif
74
 
# ifndef INT32_MAX
75
 
#  define INT32_MAX     (2147483647)
76
 
# endif
77
62
#else
78
63
#error Cannot find definitions for fixed-width integral types (uint8_t, uint32_t, etc.)
79
64
#endif
80
65
 
 
66
#ifndef INT16_MIN
 
67
# define INT16_MIN      (-32767-1)
 
68
#endif
 
69
#ifndef INT16_MAX
 
70
# define INT16_MAX      (32767)
 
71
#endif
 
72
#ifndef UINT16_MAX
 
73
# define UINT16_MAX     (65535)
 
74
#endif
 
75
#ifndef INT32_MIN
 
76
# define INT32_MIN      (-2147483647-1)
 
77
#endif
 
78
#ifndef INT32_MAX
 
79
# define INT32_MAX      (2147483647)
 
80
#endif
 
81
 
81
82
#if HAVE_BYTESWAP_H
82
83
# include <byteswap.h>
83
84
#endif