Searched refs:zz (Results 1 - 1 of 1) sorted by relevance

/system/core/libpixelflinger/
H A Dscanline.cpp839 uint16_t zz = uint32_t(z)>>(16); local
843 case GGL_LESS: if (zz<depth) break; goto discard;
844 case GGL_EQUAL: if (zz==depth) break; goto discard;
845 case GGL_LEQUAL: if (zz<=depth) break; goto discard;
846 case GGL_GREATER: if (zz>depth) break; goto discard;
847 case GGL_NOTEQUAL: if (zz!=depth) break; goto discard;
848 case GGL_GEQUAL: if (zz>=depth) break; goto discard;
857 fragment.c[0] = 255 - (zz>>8);
860 *p = zz;

Completed in 7 milliseconds