Home | History | Annotate | Download | only in state_tracker

Lines Matching refs:clip

64    } clip;
73 clip.srcX0 = srcX0;
74 clip.srcY0 = srcY0;
75 clip.srcX1 = srcX1;
76 clip.srcY1 = srcY1;
77 clip.dstX0 = dstX0;
78 clip.dstY0 = dstY0;
79 clip.dstX1 = dstX1;
80 clip.dstY1 = dstY1;
89 &clip.srcX0, &clip.srcY0, &clip.srcX1, &clip.srcY1,
90 &clip.dstX0, &clip.dstY0, &clip.dstX1, &clip.dstY1)) {
95 (dstX0 != clip.dstX0) ||
96 (dstY0 != clip.dstY0) ||
97 (dstX1 != clip.dstX1) ||
98 (dstY1 != clip.dstY1);
104 /* invert Y for clip */
105 clip.dstY0 = drawFB->Height - clip.dstY0;
106 clip.dstY1 = drawFB->Height - clip.dstY1;
109 blit.scissor.minx = MIN2(clip.dstX0, clip.dstX1);
110 blit.scissor.miny = MIN2(clip.dstY0, clip.dstY1);
111 blit.scissor.maxx = MAX2(clip.dstX0, clip.dstX1);
112 blit.scissor.maxy = MAX2(clip.dstY0, clip.dstY1);