Searched refs:cliprect (Results 1 – 6 of 6) sorted by relevance
192 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()
130 const struct pipe_scissor_state *cliprect = &setup->softpipe->cliprect; in quad_clip() local131 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() local713 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()
135 struct pipe_scissor_state cliprect; member