Home
last modified time | relevance | path

Searched refs:oddX0 (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/src/Device/
DSurface.cpp2774 int oddX0 = (x0 & ~1) * 2 + (x0 & 1); in clearDepth() local
2789 target[oddX0 + 0] = depth; in clearDepth()
2790 target[oddX0 + 2] = depth; in clearDepth()
2835 for(int x = x0, i = oddX0; x < x1; x++, i = (x & ~1) * 2 + (x & 1)) in clearDepth()
2876 int oddX0 = (x0 & ~1) * 2 + (x0 & 1); in clearStencil() local
2899 target[oddX0 + 0] = fill; in clearStencil()
2900 target[oddX0 + 2] = fill; in clearStencil()
/external/swiftshader/src/Renderer/
DSurface.cpp3373 int oddX0 = (x0 & ~1) * 2 + (x0 & 1); in clearDepth() local
3388 target[oddX0 + 0] = depth; in clearDepth()
3389 target[oddX0 + 2] = depth; in clearDepth()
3434 for(int x = x0, i = oddX0; x < x1; x++, i = (x & ~1) * 2 + (x & 1)) in clearDepth()
3475 int oddX0 = (x0 & ~1) * 2 + (x0 & 1); in clearStencil() local
3498 target[oddX0 + 0] = fill; in clearStencil()
3499 target[oddX0 + 2] = fill; in clearStencil()