Home | History | Annotate | Download | only in libpixelflinger

Lines Matching defs:alpha

229         "(nop) alpha test", scanline_noop, init_y_noop },
818 // alpha-test
821 GGLcolor alpha = (uint64_t(fragment.c[0]) *
825 case GGL_LESS: if (alpha<ref) break; goto discard;
826 case GGL_EQUAL: if (alpha==ref) break; goto discard;
827 case GGL_LEQUAL: if (alpha<=ref) break; goto discard;
828 case GGL_GREATER: if (alpha>ref) break; goto discard;
829 case GGL_NOTEQUAL: if (alpha!=ref) break; goto discard;
830 case GGL_GEQUAL: if (alpha>=ref) break; goto discard;
1634 gen.argb[GGLFormat::ALPHA].c = ci.ydady;
1635 gen.argb[GGLFormat::ALPHA].dx = c->shade.dadx;