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

« back to all changes in this revision

Viewing changes to pixman/pixman-arm-neon-asm-bilinear.S

  • 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:
65
65
.p2align 2
66
66
 
67
67
#include "pixman-private.h"
 
68
#include "pixman-arm-asm.h"
68
69
#include "pixman-arm-neon-asm.h"
69
70
 
70
71
/*
71
72
 * Bilinear macros from pixman-arm-neon-asm.S
72
73
 */
73
74
 
74
 
/* Supplementary macro for setting function attributes */
75
 
.macro pixman_asm_function fname
76
 
    .func fname
77
 
    .global fname
78
 
#ifdef __ELF__
79
 
    .hidden fname
80
 
    .type fname, %function
81
 
#endif
82
 
fname:
83
 
.endm
84
 
 
85
75
/*
86
76
 * Bilinear scaling support code which tries to provide pixel fetching, color
87
77
 * format conversion, and interpolation as separate macros which can be used