https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115679

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #9 from Andrew Pinski <pinskia at gcc dot gnu.org> ---


static __inline__ __attribute__ ((__always_inline__)) void
combine_inner (pixman_bool_t component,
        float *dest, const float *src, const float *mask, int n_pixels,
        combine_channel_t combine_a, combine_channel_t combine_c)
{

...
combine_c(...)

static float __inline__ __attribute__ ((__always_inline__)) pd_combine_clear
(float sa, float s, float da, float d) { const float fa = get_factor (ZERO, sa,
da); const float fb = get_factor (ZERO, sa, da); return ((1.0f < s * fa + d *
fb) ? 1.0f : s * fa + d * fb); }
...
static void combine_clear_ca_float (pixman_implementation_t *imp, pixman_op_t
op, float *dest, const float *src, const float *mask, int n_pixels) {
combine_inner (1, dest, src, mask, n_pixels, pd_combine_clear,
pd_combine_clear); }

*** This bug has been marked as a duplicate of bug 107931 ***

Reply via email to