Home | History | Annotate | Download | only in libpixelflinger

Lines Matching defs:xmax

742 	const int xmax = c->state.scissor.right;
746 const int32_t xr = min(right_x >> TRI_ITERATORS_BITS, xmax);
959 const int xmax = c->state.scissor.right;
960 if (xmin >= xmax) return;
981 memset(covPtr+xmin, 0, (xmax-xmin)*sizeof(*covPtr));
997 c->iterators.xl = xmax;
1005 // compute xmin and xmax for the left edge
1012 // compute xmin and xmax for the right edge
1025 if (gglFixedToIntFloor(l_min) >= xmax) l_min = gglIntToFixed(xmax)-1;
1026 if (gglFixedToIntFloor(r_min) >= xmax) r_min = gglIntToFixed(xmax)-1;
1027 if (gglFixedToIntCeil(l_max) >= xmax) l_max = gglIntToFixed(xmax)-1;
1028 if (gglFixedToIntCeil(r_max) >= xmax) r_max = gglIntToFixed(xmax)-1;
1038 const int xmr = min(xmax, gglFixedToIntFloor(r_max_i));
1046 memset(covPtr+xmin, 0, (xmax-xmin)*sizeof(*covPtr));