Home | History | Annotate | Download | only in video

Lines Matching refs:row

285 	int row, col;
315 row = surface->h;
316 while (row--) {
318 buf = (Uint8 *)surface->pixels + row * surface->pitch + offset;
558 Uint8 *row;
603 row = (Uint8 *)dst->pixels+dstrect->y*dst->pitch+
607 if ( !color && !((uintptr_t)row&3) && !(x&3) && !(dst->pitch&3) ) {
610 SDL_memset4(row, 0, n);
611 row += dst->pitch;
630 Uint8 *d = row;
661 row += dst->pitch;
666 Uint8 *d = row;
673 row += dst->pitch;
680 SDL_memset(row, color, x);
681 row += dst->pitch;
689 Uint16 *pixels = (Uint16 *)row;
701 row += dst->pitch;
710 Uint8 *pixels = row;
715 row += dst->pitch;
721 SDL_memset4(row, color, dstrect->w);
722 row += dst->pitch;