Lines Matching defs:rect
845 const struct fb_fillrect *rect)
852 u32 dx = rect->dx;
853 u32 dy = rect->dy;
856 if (rect->rop == ROP_COPY)
861 /* assume always rect->height < 4096 */
862 if (dy + rect->height > 4095) {
866 /* assume always rect->width < 4096 */
867 if (dx + rect->width > 4095) {
874 tdfx_outl(par, COLORFORE, rect->color);
876 tdfx_outl(par, COLORFORE, par->palette[rect->color]);
880 tdfx_outl(par, DSTSIZE, rect->width | (rect->height << 16));