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

  /external/skia/src/core/
SkPaintPriv.cpp 24 SkXfermode::Coeff srcCoeff, dstCoeff;
25 if (SkXfermode::AsCoeff(paint->getXfermode(), &srcCoeff, &dstCoeff)){
26 if (SkXfermode::kDA_Coeff == srcCoeff || SkXfermode::kDC_Coeff == srcCoeff ||
27 SkXfermode::kIDA_Coeff == srcCoeff || SkXfermode::kIDC_Coeff == srcCoeff) {
  /external/skia/src/gpu/
GrDrawTarget.cpp 490 GrBlendCoeff* srcCoeff,
503 if (NULL == srcCoeff) {
504 srcCoeff = &bogusSrcCoeff;
506 *srcCoeff = drawState.getSrcBlendCoeff();
514 *srcCoeff = kZero_GrBlendCoeff;
530 if ((kZero_GrBlendCoeff == *srcCoeff && dstCoeffIsOne) || covIsZero) {
557 if (kOne_GrBlendCoeff == *srcCoeff) {
561 } else if (kZero_GrBlendCoeff == *srcCoeff) {
564 *srcCoeff = kOne_GrBlendCoeff;
579 if (kZero_GrBlendCoeff == *srcCoeff) {
    [all...]
GrDrawState.h 626 void setBlendFunc(GrBlendCoeff srcCoeff, GrBlendCoeff dstCoeff) {
627 fCommon.fSrcBlend = srcCoeff;
641 switch (srcCoeff) {
    [all...]
GrDrawTarget.h 662 * to be tweaked in order for the optimization to work. srcCoeff and dstCoeff are optional
668 GrBlendCoeff* srcCoeff = NULL,
    [all...]
  /external/skia/include/gpu/
GrPaint.h 61 void setBlendFunc(GrBlendCoeff srcCoeff, GrBlendCoeff dstCoeff) {
62 fSrcBlendCoeff = srcCoeff;
  /external/skia/src/gpu/gl/
GrGLProgram.h 59 void overrideBlend(GrBlendCoeff* srcCoeff, GrBlendCoeff* dstCoeff) const;
GrGpuGL_program.cpp 267 GrBlendCoeff srcCoeff;
269 BlendOptFlags blendOpts = this->getBlendOpts(false, &srcCoeff, &dstCoeff);
292 fCurrentProgram->overrideBlend(&srcCoeff, &dstCoeff);
293 this->flushBlend(kDrawLines_DrawType == type, srcCoeff, dstCoeff);
GrGLProgram.cpp 104 void GrGLProgram::overrideBlend(GrBlendCoeff* srcCoeff,
126 inline void need_blend_inputs(SkXfermode::Coeff srcCoeff,
130 if (SkXfermode::kZero_Coeff == srcCoeff) {
147 switch (srcCoeff) {
    [all...]
GrGpuGL.h 130 void flushBlend(bool isLines, GrBlendCoeff srcCoeff, GrBlendCoeff dstCoeff);
GrGpuGL.cpp     [all...]
  /external/skia/legacy/src/utils/
SkDeferredCanvas.cpp 27 SkXfermode::Coeff srcCoeff, dstCoeff;
28 if (SkXfermode::AsCoeff(paint->getXfermode(), &srcCoeff, &dstCoeff)){

Completed in 926 milliseconds