~ubuntu-branches/debian/sid/pixman/sid

« back to all changes in this revision

Viewing changes to test/utils.h

  • Committer: Package Import Robot
  • Author(s): Julien Cristau, Andreas Boll, intrigeri
  • Date: 2015-09-12 13:08:02 UTC
  • mfrom: (1.1.29)
  • Revision ID: package-import@ubuntu.com-20150912130802-0egoj4agog1fsobn
Tags: 0.33.2-1
[ Andreas Boll ]
* New upstream release candidate.
* Enable vmx on ppc64el (closes: #786345).
* Update Vcs-* fields.
* Add upstream url.
* Drop XC- prefix from Package-Type field.
* Bump standards version to 3.9.6.

[ intrigeri ]
* Simplify hardening build flags handling (closes: #760100).
  Thanks to Simon Ruderich <simon@ruderich.org> for the patch.
* Enable all hardening build flags. Thanks to Simon Ruderich too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
 
121
121
/* If possible, enable traps for floating point exceptions */
122
122
void enable_divbyzero_exceptions(void);
 
123
void enable_invalid_exceptions(void);
123
124
 
124
125
/* Converts a8r8g8b8 pixels to pixels that
125
126
 *  - are not premultiplied,
186
187
void
187
188
initialize_palette (pixman_indexed_t *palette, uint32_t depth, int is_rgb);
188
189
 
 
190
pixman_format_code_t
 
191
format_from_string (const char *s);
 
192
 
 
193
void
 
194
list_formats (void);
 
195
 
 
196
void
 
197
list_operators (void);
 
198
 
 
199
pixman_op_t
 
200
operator_from_string (const char *s);
 
201
 
189
202
const char *
190
203
operator_name (pixman_op_t op);
191
204