Home | History | Annotate | Download | only in llvmpipe

Lines Matching defs:bbox

324    struct u_rect bbox;
338 bbox.x0 = (x0 + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
339 bbox.x1 = (x0 + fixed_width + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
340 bbox.y0 = (y0 + (FIXED_ONE-1)) >> FIXED_ORDER;
341 bbox.y1 = (y0 + fixed_width + (FIXED_ONE-1)) >> FIXED_ORDER;
345 bbox.x1--;
346 bbox.y1--;
349 if (!u_rect_test_intersection(&setup->draw_region, &bbox)) {
355 u_rect_find_intersection(&setup->draw_region, &bbox);
391 plane[0].c = 1-bbox.x0;
396 plane[1].c = bbox.x1+1;
401 plane[2].c = 1-bbox.y0;
406 plane[3].c = bbox.y1+1;
410 return lp_setup_bin_triangle(setup, point, &bbox, nr_planes);