Lines Matching defs:rect
846 const struct fb_fillrect *rect)
853 u32 dx = rect->dx;
854 u32 dy = rect->dy;
857 if (rect->rop == ROP_COPY)
862 /* assume always rect->height < 4096 */
863 if (dy + rect->height > 4095) {
867 /* assume always rect->width < 4096 */
868 if (dx + rect->width > 4095) {
875 tdfx_outl(par, COLORFORE, rect->color);
877 tdfx_outl(par, COLORFORE, par->palette[rect->color]);
881 tdfx_outl(par, DSTSIZE, rect->width | (rect->height << 16));