Home
last modified time | relevance | path

Searched refs:rowMask (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/core/
DSkAAClip.cpp2194 SkMask rowMask; in blitMask() local
2195 rowMask.fFormat = SkMask::k3D_Format == mask->fFormat ? SkMask::kA8_Format : mask->fFormat; in blitMask()
2196 rowMask.fBounds.fLeft = clip.fLeft; in blitMask()
2197 rowMask.fBounds.fRight = clip.fRight; in blitMask()
2198 rowMask.fRowBytes = mask->fRowBytes; // doesn't matter, since our height==1 in blitMask()
2199 rowMask.fImage = (uint8_t*)fScanlineScratch; in blitMask()
2213 mergeProc(src, width, row, initialCount, rowMask.fImage); in blitMask()
2214 rowMask.fBounds.fTop = y; in blitMask()
2215 rowMask.fBounds.fBottom = y + 1; in blitMask()
2216 fBlitter->blitMask(rowMask, rowMask.fBounds); in blitMask()
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_setup.c1365 uint rowMask = 0xf; in sp_setup_point() local
1368 rowMask &= (MASK_BOTTOM_LEFT | MASK_BOTTOM_RIGHT); in sp_setup_point()
1372 rowMask &= (MASK_TOP_LEFT | MASK_TOP_RIGHT); in sp_setup_point()
1376 uint mask = rowMask; in sp_setup_point()
/external/mesa3d/src/mesa/swrast/
Ds_texfilter.c1422 const GLint rowMask = img->Height - 1; in opt_sample_rgb_2d() local
1436 GLint j = IFLOOR(texcoords[k][1] * height) & rowMask; in opt_sample_rgb_2d()
1467 const GLint rowMask = img->Height - 1; in opt_sample_rgba_2d() local
1481 const GLint row = IFLOOR(texcoords[i][1] * height) & rowMask; in opt_sample_rgba_2d()