HomeSort by relevance Sort by last modified time
    Searched full:ramp_stops (Results 1 - 1 of 1) sorted by null

  /external/mesa3d/src/gallium/state_trackers/vega/
paint.c 65 VGfloat *ramp_stops; member in struct:vg_paint::__anon19461
103 static INLINE void create_gradient_data(const VGfloat *ramp_stops,
113 while (fpos < ramp_stops[0]) {
114 data[pos] = float4_to_argb(ramp_stops + 1);
122 VGfloat delta = 1.f/(ramp_stops[rnext] - ramp_stops[rcur]);
123 while (fpos < ramp_stops[rnext] && pos < size) {
124 VGint dist = 256 * ((fpos - ramp_stops[rcur]) * delta);
126 VGuint current_color = float4_to_argb(ramp_stops + rcur + 1);
127 VGuint next_color = float4_to_argb(ramp_stops + rnext + 1)
    [all...]

Completed in 59 milliseconds