Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_state_derived.c192 sp->cliprect.minx = MAX2(sp->scissor.minx, 0); in compute_cliprect()
193 sp->cliprect.miny = MAX2(sp->scissor.miny, 0); in compute_cliprect()
194 sp->cliprect.maxx = MIN2(sp->scissor.maxx, surfWidth); in compute_cliprect()
195 sp->cliprect.maxy = MIN2(sp->scissor.maxy, surfHeight); in compute_cliprect()
199 sp->cliprect.minx = 0; in compute_cliprect()
200 sp->cliprect.miny = 0; in compute_cliprect()
201 sp->cliprect.maxx = surfWidth; in compute_cliprect()
202 sp->cliprect.maxy = surfHeight; in compute_cliprect()
Dsp_setup.c130 const struct pipe_scissor_state *cliprect = &setup->softpipe->cliprect; in quad_clip() local
131 const int minx = (int) cliprect->minx; in quad_clip()
132 const int maxx = (int) cliprect->maxx; in quad_clip()
133 const int miny = (int) cliprect->miny; in quad_clip()
134 const int maxy = (int) cliprect->maxy; in quad_clip()
712 const struct pipe_scissor_state *cliprect = &setup->softpipe->cliprect; in subtriangle() local
713 const int minx = (int) cliprect->minx; in subtriangle()
714 const int maxx = (int) cliprect->maxx; in subtriangle()
715 const int miny = (int) cliprect->miny; in subtriangle()
716 const int maxy = (int) cliprect->maxy; in subtriangle()
Dsp_context.h135 struct pipe_scissor_state cliprect; member
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
Dsp_state_derived.c192 sp->cliprect.minx = MAX2(sp->scissor.minx, 0); in compute_cliprect()
193 sp->cliprect.miny = MAX2(sp->scissor.miny, 0); in compute_cliprect()
194 sp->cliprect.maxx = MIN2(sp->scissor.maxx, surfWidth); in compute_cliprect()
195 sp->cliprect.maxy = MIN2(sp->scissor.maxy, surfHeight); in compute_cliprect()
199 sp->cliprect.minx = 0; in compute_cliprect()
200 sp->cliprect.miny = 0; in compute_cliprect()
201 sp->cliprect.maxx = surfWidth; in compute_cliprect()
202 sp->cliprect.maxy = surfHeight; in compute_cliprect()
Dsp_setup.c130 const struct pipe_scissor_state *cliprect = &setup->softpipe->cliprect; in quad_clip() local
131 const int minx = (int) cliprect->minx; in quad_clip()
132 const int maxx = (int) cliprect->maxx; in quad_clip()
133 const int miny = (int) cliprect->miny; in quad_clip()
134 const int maxy = (int) cliprect->maxy; in quad_clip()
712 const struct pipe_scissor_state *cliprect = &setup->softpipe->cliprect; in subtriangle() local
713 const int minx = (int) cliprect->minx; in subtriangle()
714 const int maxx = (int) cliprect->maxx; in subtriangle()
715 const int miny = (int) cliprect->miny; in subtriangle()
716 const int maxy = (int) cliprect->maxy; in subtriangle()
Dsp_context.h135 struct pipe_scissor_state cliprect; member
/external/pdfium/fpdfsdk/src/
Dfpdfview.cpp498 RECT rect, cliprect; in FPDF_RenderPage() local
503 GetClipBox(dc, &cliprect); in FPDF_RenderPage()
504 IntersectRect(&rect, &rect, &cliprect); in FPDF_RenderPage()
/external/chromium_org/pdf/pdfium/
Dpdfium_engine.cc2903 FS_RECTF cliprect = {static_cast<float>(source_clip_box.left+offset_x), in TransformPDFPageForPrinting() local
2907 FPDFPage_TransFormWithClip(page, &matrix, &cliprect); in TransformPDFPageForPrinting()