Lines Matching defs:rect
35 nv50_fbcon_fillrect(struct fb_info *info, const struct fb_fillrect *rect)
46 colour = ((uint32_t *)info->pseudo_palette)[rect->color];
48 colour = rect->color;
50 ret = PUSH_WAIT(push, rect->rop == ROP_COPY ? 7 : 11);
54 if (rect->rop != ROP_COPY) {
61 PUSH_MTHD(push, NV502D, RENDER_SOLID_PRIM_POINT_SET_X(0), rect->dx,
62 RENDER_SOLID_PRIM_POINT_Y(0), rect->dy,
63 RENDER_SOLID_PRIM_POINT_SET_X(1), rect->dx + rect->width,
64 RENDER_SOLID_PRIM_POINT_Y(1), rect->dy + rect->height);
66 if (rect->rop != ROP_COPY) {