Home | History | Annotate | Download | only in gpu

Lines Matching defs:dstM

1036     SkMask  srcM, dstM;
1044 if (!filter->filterMask(&dstM, srcM, matrix, NULL)) {
1047 // this will free-up dstM when we're done (allocated in filterMask())
1048 SkAutoMaskFreeImage autoDst(dstM.fImage);
1050 if (clip.quickReject(dstM.fBounds)) {
1053 if (bounder && !bounder->doIRect(dstM.fBounds)) {
1057 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
1067 dstM.fBounds.width(),
1068 dstM.fBounds.height(),
1080 dstM.fImage, dstM.fRowBytes);
1093 d.setLTRB(GrIntToScalar(dstM.fBounds.fLeft),
1094 GrIntToScalar(dstM.fBounds.fTop),
1095 GrIntToScalar(dstM.fBounds.fRight),
1096 GrIntToScalar(dstM.fBounds.fBottom));
1099 m->setTranslate(-dstM.fBounds.fLeft*SK_Scalar1,
1100 -dstM.fBounds.fTop*SK_Scalar1);