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

/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_state_derived.c174 * Recompute cliprect from scissor bounds, scissor enable and surface size.
192 sp->cliprect.minx = MAX2(sp->scissor.minx, 0);
193 sp->cliprect.miny = MAX2(sp->scissor.miny, 0);
194 sp->cliprect.maxx = MIN2(sp->scissor.maxx, surfWidth);
195 sp->cliprect.maxy = MIN2(sp->scissor.maxy, surfHeight);
199 sp->cliprect.minx = 0;
200 sp->cliprect.miny = 0;
201 sp->cliprect.maxx = surfWidth;
202 sp->cliprect.maxy = surfHeight;
H A Dsp_setup.c130 const struct pipe_scissor_state *cliprect = &setup->softpipe->cliprect; local
131 const int minx = (int) cliprect->minx;
132 const int maxx = (int) cliprect->maxx;
133 const int miny = (int) cliprect->miny;
134 const int maxy = (int) cliprect->maxy;
704 * Scissoring/cliprect is applied here too.
712 const struct pipe_scissor_state *cliprect = &setup->softpipe->cliprect; local
713 const int minx = (int) cliprect
[all...]
H A Dsp_context.h135 struct pipe_scissor_state cliprect; member in struct:softpipe_context
/external/pdfium/fpdfsdk/src/
H A Dfpdfview.cpp577 RECT rect, cliprect; local
582 GetClipBox(dc, &cliprect);
583 IntersectRect(&rect, &rect, &cliprect);

Completed in 113 milliseconds