HomeSort by relevance Sort by last modified time
    Searched defs:plotPaint (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/skia/bench/
ChartBench.cpp 140 SkPaint plotPaint;
142 plotPaint.setAntiAlias(fAA);
143 plotPaint.setStyle(SkPaint::kStroke_Style);
144 plotPaint.setStrokeWidth(kStrokeWidth);
145 plotPaint.setStrokeCap(SkPaint::kRound_Cap);
146 plotPaint.setStrokeJoin(SkPaint::kRound_Join);
165 plotPaint.setColor(colors[i]);
166 canvas->drawPath(plotPath, plotPaint);
  /external/chromium_org/third_party/skia/samplecode/
SampleChart.cpp 134 SkPaint plotPaint;
136 plotPaint.setAntiAlias(true);
137 plotPaint.setStyle(SkPaint::kStroke_Style);
138 plotPaint.setStrokeWidth(kStrokeWidth);
139 plotPaint.setStrokeCap(SkPaint::kRound_Cap);
140 plotPaint.setStrokeJoin(SkPaint::kRound_Join);
159 plotPaint.setColor(gColors[i]);
160 canvas->drawPath(plotPath, plotPaint);

Completed in 580 milliseconds