Searched defs:unpremul (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/skia/src/gpu/
H A DGrContext.cpp1425 // Determine which conversions have to be applied: flipY, swapRAnd, and/or unpremul.
1445 bool unpremul = SkToBool(kUnpremul_PixelOpsFlag & flags); local
1447 if (unpremul && !GrPixelConfigIs8888(dstConfig)) {
1448 // The unpremul flag is only allowed for these two configs.
1458 if (src && (swapRAndB || unpremul || flipY)) {
1489 if (unpremul) {
1492 unpremul = false; // we no longer need to do this on CPU after the read back.
1529 if (unpremul || swapRAndB) {
1669 // handle the unpremul step on the CPU if we couldn't create an effect to do it.
/external/skia/src/gpu/
H A DGrContext.cpp1407 // Determine which conversions have to be applied: flipY, swapRAnd, and/or unpremul.
1427 bool unpremul = SkToBool(kUnpremul_PixelOpsFlag & flags); local
1429 if (unpremul && !GrPixelConfigIs8888(dstConfig)) {
1430 // The unpremul flag is only allowed for these two configs.
1440 if (NULL != src && (swapRAndB || unpremul || flipY)) {
1471 if (unpremul) {
1474 unpremul = false; // we no longer need to do this on CPU after the read back.
1513 if (unpremul || swapRAndB) {
1654 // handle the unpremul step on the CPU if we couldn't create an effect to do it.

Completed in 114 milliseconds