OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dstCoeff
(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
)){
30
switch (
dstCoeff
) {
/external/skia/src/gpu/
GrDrawTarget.cpp
474
GrBlendCoeff
dstCoeff
= this->getDrawState().getDstBlendCoeff();
475
return kOne_GrBlendCoeff ==
dstCoeff
||
476
kISA_GrBlendCoeff ==
dstCoeff
||
477
kISC_GrBlendCoeff ==
dstCoeff
||
491
GrBlendCoeff*
dstCoeff
) const {
508
if (NULL ==
dstCoeff
) {
509
dstCoeff
= &bogusDstCoeff;
511
*
dstCoeff
= drawState.getDstBlendCoeff();
515
*
dstCoeff
= kOne_GrBlendCoeff;
519
bool dstCoeffIsOne = kOne_GrBlendCoeff == *
dstCoeff
||
[
all
...]
GrDrawState.h
626
void setBlendFunc(GrBlendCoeff srcCoeff, GrBlendCoeff
dstCoeff
) {
628
fCommon.fDstBlend =
dstCoeff
;
630
switch (
dstCoeff
) {
[
all
...]
GrDrawTarget.h
662
* to be tweaked in order for the optimization to work. srcCoeff and
dstCoeff
are optional
669
GrBlendCoeff*
dstCoeff
= NULL) const;
[
all
...]
/external/skia/src/gpu/gl/
GrGpuGL_program.cpp
268
GrBlendCoeff
dstCoeff
;
269
BlendOptFlags blendOpts = this->getBlendOpts(false, &srcCoeff, &
dstCoeff
);
279
this->buildProgram(kDrawPoints_DrawType == type, blendOpts,
dstCoeff
, &desc);
292
fCurrentProgram->overrideBlend(&srcCoeff, &
dstCoeff
);
293
this->flushBlend(kDrawLines_DrawType == type, srcCoeff,
dstCoeff
);
471
GrBlendCoeff
dstCoeff
,
594
if (kZero_GrBlendCoeff ==
dstCoeff
) {
598
} else if (kSA_GrBlendCoeff ==
dstCoeff
) {
602
} else if (kSC_GrBlendCoeff ==
dstCoeff
) {
GrGLProgram.h
59
void overrideBlend(GrBlendCoeff* srcCoeff, GrBlendCoeff*
dstCoeff
) const;
GrGpuGL.h
130
void flushBlend(bool isLines, GrBlendCoeff srcCoeff, GrBlendCoeff
dstCoeff
);
208
GrBlendCoeff
dstCoeff
,
GrGLProgram.cpp
105
GrBlendCoeff*
dstCoeff
) const {
114
*
dstCoeff
= (GrBlendCoeff)GrGpu::kIS2C_GrBlendCoeff;
127
SkXfermode::Coeff
dstCoeff
,
131
switch (
dstCoeff
) {
146
if (SkXfermode::kZero_Coeff ==
dstCoeff
) {
[
all
...]
GrGpuGL.cpp
[
all
...]
/external/skia/include/gpu/
GrPaint.h
61
void setBlendFunc(GrBlendCoeff srcCoeff, GrBlendCoeff
dstCoeff
) {
63
fDstBlendCoeff =
dstCoeff
;
/external/skia/legacy/src/utils/
SkDeferredCanvas.cpp
27
SkXfermode::Coeff srcCoeff,
dstCoeff
;
28
if (SkXfermode::AsCoeff(paint->getXfermode(), &srcCoeff, &
dstCoeff
)){
29
switch (
dstCoeff
) {
Completed in 1017 milliseconds