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

/external/chromium_org/third_party/mesa/src/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/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.cpp498 RECT rect, cliprect; local
503 GetClipBox(dc, &cliprect);
504 IntersectRect(&rect, &rect, &cliprect);
/external/chromium_org/pdf/pdfium/
H A Dpdfium_engine.cc2903 FS_RECTF cliprect = {static_cast<float>(source_clip_box.left+offset_x), local
2907 FPDFPage_TransFormWithClip(page, &matrix, &cliprect);

Completed in 642 milliseconds