Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 73022 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-20 lines)
Lines 71-73 Link Here
71
#if __VEC__
72
    vector float	v;
73
#endif
Lines 78-80 Link Here
78
#if __VEC__
79
    vector unsigned int	v;
80
#endif
Lines 174-187 Link Here
174
#ifdef __VEC__
175
176
static vector float FastDistance2DV(vector float x, vector float y) {
177
    vector float mn, temp;
178
    
179
    x = vec_abs(x);
180
    y = vec_abs(y);
181
    mn = vec_min(x,y);
182
    temp = vec_add(x,y);
183
    temp = vec_madd(mn, (vector float)(-0.6875), temp);
184
    return temp;
185
}
186
187
#endif

Return to bug 73022