HomeSort by relevance Sort by last modified time
    Searched refs:lastStop (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/qt/
GradientQt.cpp 67 qreal lastStop(0.0);
71 if (qFuzzyCompare(lastStop, qreal(stopIterator->stop)))
72 lastStop = stopIterator->stop + lastStopDiff;
74 lastStop = stopIterator->stop;
77 lastStop = lastStop * (1.0f - innerRadius / outerRadius);
79 lastStop += innerRadius / outerRadius;
82 qreal stopPosition = qMin(lastStop, qreal(1.0f));
88 // Keep the lastStop as orginal value, since the following stopColor depend it
89 lastStop = stopIterator->stop
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
Gradient.cpp 168 const ColorStop& lastStop = m_stops[stop];
170 float stopFraction = (value - lastStop.stop) / (nextStop.stop - lastStop.stop);
171 *r = lastStop.red + (nextStop.red - lastStop.red) * stopFraction;
172 *g = lastStop.green + (nextStop.green - lastStop.green) * stopFraction;
173 *b = lastStop.blue + (nextStop.blue - lastStop.blue) * stopFraction;
174 *a = lastStop.alpha + (nextStop.alpha - lastStop.alpha) * stopFraction
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp     [all...]

Completed in 274 milliseconds