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

  /external/chromium_org/third_party/skia/src/gpu/
SkGpuDevice.cpp 332 GrPaint grPaint;
333 SkPaint2GrPaintShader(this->context(), paint, true, &grPaint);
335 fContext->drawPaint(grPaint);
357 GrPaint grPaint;
358 SkPaint2GrPaintShader(this->context(), paint, true, &grPaint);
362 fContext->drawPath(grPaint, path, strokeInfo);
373 GrPaint grPaint;
    [all...]
GrTextContext.cpp 19 void GrTextContext::init(const GrPaint& grPaint, const SkPaint& skPaint) {
34 fPaint = grPaint;
SkGr.cpp 276 GrPaint paint;
465 bool constantColor, GrPaint* grPaint) {
467 grPaint->setDither(skPaint.isDither());
468 grPaint->setAntiAlias(skPaint.isAntiAlias());
477 grPaint->addColorProcessor(xferProcessor)->unref();
487 grPaint->setBlendFunc(sk_blend_to_grblend(sm), sk_blend_to_grblend(dm));
490 grPaint->setColor(paintColor);
498 grPaint->setColor(SkColor2GrColor(filtered));
502 grPaint->addColorProcessor(fp)
    [all...]
  /external/chromium_org/third_party/skia/include/gpu/
SkGr.h 79 // Converts a SkPaint to a GrPaint, ignoring the SkPaint's shader.
80 // Sets the color of GrPaint to the value of the parameter paintColor
81 // Callers may subsequently modify the GrPaint. Setting constantColor indicates
84 // color once while converting to GrPaint and then ignored.
86 bool constantColor, GrPaint* grPaint);
92 bool constantColor, GrPaint* grPaint);
  /external/chromium_org/third_party/skia/src/effects/
SkAlphaThresholdFilter.cpp 296 GrPaint grPaint;
297 grPaint.setBlendFunc(kOne_GrBlendCoeff, kZero_GrBlendCoeff);
306 context->drawRect(grPaint, rect);

Completed in 265 milliseconds