HomeSort by relevance Sort by last modified time
    Searched refs:GrPaint (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/chromium_org/third_party/skia/include/gpu/
GrTextContext.h 13 #include "GrPaint.h"
28 GrTextContext(GrContext*, const GrPaint&);
31 GrPaint fPaint;
GrBitmapTextContext.h 20 GrBitmapTextContext(GrContext*, const GrPaint&, SkColor);
GrDistanceFieldTextContext.h 20 GrDistanceFieldTextContext(GrContext*, const GrPaint&, SkColor, SkScalar textRatio);
GrPaint.h 42 * TODO: Encapsulate setXfermodeColorFilter in a GrEffect and remove from GrPaint.
44 class GrPaint {
46 GrPaint() { this->reset(); }
48 GrPaint(const GrPaint& paint) { *this = paint; }
50 ~GrPaint() {}
132 GrPaint& operator=(const GrPaint& paint) {
GrContext.h 13 #include "GrPaint.h"
389 void drawPaint(const GrPaint& paint);
403 void drawRect(const GrPaint& paint,
421 void drawRectToRect(const GrPaint& paint,
434 void drawRRect(const GrPaint& paint,
445 void drawPath(const GrPaint& paint, const SkPath& path, const SkStrokeRec& stroke);
463 void drawVertices(const GrPaint& paint,
479 void drawOval(const GrPaint& paint,
668 * A GrPaint is setup with GrEffects. The stages will have access to the pre-matrix source
687 void setPreConcat(GrContext* context, const SkMatrix& preConcat, GrPaint* paint = NULL)
    [all...]
  /external/skia/include/gpu/
GrTextContext.h 13 #include "GrPaint.h"
28 GrTextContext(GrContext*, const GrPaint&);
31 GrPaint fPaint;
GrBitmapTextContext.h 20 GrBitmapTextContext(GrContext*, const GrPaint&, SkColor);
GrDistanceFieldTextContext.h 20 GrDistanceFieldTextContext(GrContext*, const GrPaint&, SkColor, SkScalar textRatio);
GrPaint.h 42 * TODO: Encapsulate setXfermodeColorFilter in a GrEffect and remove from GrPaint.
44 class GrPaint {
46 GrPaint() { this->reset(); }
48 GrPaint(const GrPaint& paint) { *this = paint; }
50 ~GrPaint() {}
132 GrPaint& operator=(const GrPaint& paint) {
GrContext.h 13 #include "GrPaint.h"
389 void drawPaint(const GrPaint& paint);
403 void drawRect(const GrPaint& paint,
421 void drawRectToRect(const GrPaint& paint,
434 void drawRRect(const GrPaint& paint,
445 void drawPath(const GrPaint& paint, const SkPath& path, const SkStrokeRec& stroke);
463 void drawVertices(const GrPaint& paint,
479 void drawOval(const GrPaint& paint,
668 * A GrPaint is setup with GrEffects. The stages will have access to the pre-matrix source
687 void setPreConcat(GrContext* context, const SkMatrix& preConcat, GrPaint* paint = NULL)
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrPaint.cpp 9 #include "GrPaint.h"
14 void GrPaint::addColorTextureEffect(GrTexture* texture, const SkMatrix& matrix) {
19 void GrPaint::addCoverageTextureEffect(GrTexture* texture, const SkMatrix& matrix) {
24 void GrPaint::addColorTextureEffect(GrTexture* texture,
31 void GrPaint::addCoverageTextureEffect(GrTexture* texture,
38 bool GrPaint::isOpaque() const {
42 bool GrPaint::isOpaqueAndConstantColor(GrColor* color) const {
54 bool GrPaint::getOpaqueAndKnownColor(GrColor* solidColor,
110 // TODO: update this once GrPaint actually has a const color.
GrTextContext.cpp 11 GrTextContext::GrTextContext(GrContext* context, const GrPaint& paint) : fPaint(paint) {
GrOvalRenderer.h 12 #include "GrPaint.h"
16 class GrPaint;
SkGpuDevice.cpp 429 // converts a SkPaint to a GrPaint, ignoring the skPaint's shader
431 // Callers may subsequently modify the GrPaint. Setting constantColor indicates
434 // color once while converting to GrPaint and then ignored.
439 GrPaint* grPaint) {
441 grPaint->setDither(skPaint.isDither());
442 grPaint->setAntiAlias(skPaint.isAntiAlias());
451 grPaint->addColorEffect(xferEffect)->unref();
465 grPaint->setBlendFunc(sk_blend_to_grblend(sm), sk_blend_to_grblend(dm));
469 grPaint->setColor(GrColorPackRGBA(alpha, alpha, alpha, alpha))
    [all...]
GrBitmapTextContext.cpp 26 GrBitmapTextContext::GrBitmapTextContext(GrContext* context, const GrPaint& paint,
82 // We don't use the GrPaint's color in this case because it's been premultiplied by
200 GrPaint tmpPaint(fPaint);
GrDistanceFieldTextContext.cpp 27 const GrPaint& paint,
80 // We don't use the GrPaint's color in this case because it's been premultiplied by
196 GrPaint tmpPaint(fPaint);
  /external/skia/src/gpu/
GrPaint.cpp 9 #include "GrPaint.h"
14 void GrPaint::addColorTextureEffect(GrTexture* texture, const SkMatrix& matrix) {
19 void GrPaint::addCoverageTextureEffect(GrTexture* texture, const SkMatrix& matrix) {
24 void GrPaint::addColorTextureEffect(GrTexture* texture,
31 void GrPaint::addCoverageTextureEffect(GrTexture* texture,
38 bool GrPaint::isOpaque() const {
42 bool GrPaint::isOpaqueAndConstantColor(GrColor* color) const {
54 bool GrPaint::getOpaqueAndKnownColor(GrColor* solidColor,
110 // TODO: update this once GrPaint actually has a const color.
GrTextContext.cpp 11 GrTextContext::GrTextContext(GrContext* context, const GrPaint& paint) : fPaint(paint) {
GrOvalRenderer.h 12 #include "GrPaint.h"
16 class GrPaint;
SkGpuDevice.cpp 429 // converts a SkPaint to a GrPaint, ignoring the skPaint's shader
431 // Callers may subsequently modify the GrPaint. Setting constantColor indicates
434 // color once while converting to GrPaint and then ignored.
439 GrPaint* grPaint) {
441 grPaint->setDither(skPaint.isDither());
442 grPaint->setAntiAlias(skPaint.isAntiAlias());
451 grPaint->addColorEffect(xferEffect)->unref();
465 grPaint->setBlendFunc(sk_blend_to_grblend(sm), sk_blend_to_grblend(dm));
469 grPaint->setColor(GrColorPackRGBA(alpha, alpha, alpha, alpha))
    [all...]
GrBitmapTextContext.cpp 26 GrBitmapTextContext::GrBitmapTextContext(GrContext* context, const GrPaint& paint,
82 // We don't use the GrPaint's color in this case because it's been premultiplied by
200 GrPaint tmpPaint(fPaint);
  /external/chromium_org/third_party/skia/src/effects/
SkXfermodeImageFilter.cpp 145 GrPaint paint;
150 GrPaint backgroundPaint;
155 GrPaint foregroundPaint;
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrConfigConversionEffect.cpp 221 GrPaint paint1;
228 GrPaint paint2;
233 GrPaint paint3;
  /external/skia/src/effects/
SkXfermodeImageFilter.cpp 145 GrPaint paint;
150 GrPaint backgroundPaint;
155 GrPaint foregroundPaint;
  /external/skia/src/gpu/effects/
GrConfigConversionEffect.cpp 221 GrPaint paint1;
228 GrPaint paint2;
233 GrPaint paint3;

Completed in 561 milliseconds

1 2 3