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

/xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
H A Dst_atom_scissor.c110 struct pipe_scissor_state new_rects[PIPE_MAX_WINDOW_RECTANGLES]; local in function:st_update_window_rectangles
124 new_rects[i].minx = MAX2(rect->X, 0);
125 new_rects[i].miny = MAX2(rect->Y, 0);
126 new_rects[i].maxx = MAX2(rect->X + rect->Width, 0);
127 new_rects[i].maxy = MAX2(rect->Y + rect->Height, 0);
129 if (num_rects > 0 && memcmp(new_rects, st->state.window_rects.rects,
131 memcpy(st->state.window_rects.rects, new_rects,
145 st->pipe, include, num_rects, new_rects);
/xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
H A Dst_atom_scissor.c113 struct pipe_scissor_state new_rects[PIPE_MAX_WINDOW_RECTANGLES]; local in function:st_update_window_rectangles
127 new_rects[i].minx = MAX2(rect->X, 0);
128 new_rects[i].miny = MAX2(rect->Y, 0);
129 new_rects[i].maxx = MAX2(rect->X + rect->Width, 0);
130 new_rects[i].maxy = MAX2(rect->Y + rect->Height, 0);
132 if (num_rects > 0 && memcmp(new_rects, st->state.window_rects.rects,
134 memcpy(st->state.window_rects.rects, new_rects,
148 st->pipe, include, num_rects, new_rects);
/xsrc/external/mit/pixman/dist/pixman/
H A Dpixman-region.c695 int new_rects; local in function:pixman_region_append_non_o
697 new_rects = r_end - r;
700 critical_if_fail (new_rects != 0);
703 RECTALLOC (region, new_rects);
705 region->data->numRects += new_rects;
731 int new_rects; \
732 if ((new_rects = r_end - r)) { \
733 RECTALLOC_BAIL (new_reg, new_rects, bail); \
735 new_rects * sizeof(box_type_t)); \
736 new_reg->data->numRects += new_rects; \
[all...]

Completed in 3 milliseconds