Home | History | Annotate | Download | only in video

Lines Matching refs:Uint8

454 	Uint8 *src = from;						\
455 Uint8 *dst = to; \
490 dst[0] = (Uint8)(d >> 16); \
491 dst[1] = (Uint8)(d >> 8); \
492 dst[2] = (Uint8)(d); \
494 dst[0] = (Uint8)d; \
495 dst[1] = (Uint8)(d >> 8); \
496 dst[2] = (Uint8)(d >> 16); \
627 case 1: blitter(1, Uint8, OPAQUE_BLIT); break; \
628 case 2: blitter(2, Uint8, OPAQUE_BLIT); break; \
629 case 3: blitter(3, Uint8, OPAQUE_BLIT); break; \
645 blitter(2, Uint8, ALPHA_BLIT16_565_50); \
648 blitter(2, Uint8, ALPHA_BLIT16_565MMX); \
650 blitter(2, Uint8, ALPHA_BLIT16_565); \
661 blitter(2, Uint8, ALPHA_BLIT16_555_50); \
664 blitter(2, Uint8, ALPHA_BLIT16_555MMX); \
666 blitter(2, Uint8, ALPHA_BLIT16_555); \
674 blitter(2, Uint8, ALPHA_BLIT_ANY); \
679 blitter(3, Uint8, ALPHA_BLIT_ANY); \
713 case 1: blitter(1, Uint8, OPAQUE_BLIT); break; \
714 case 2: blitter(2, Uint8, OPAQUE_BLIT); break; \
715 case 3: blitter(3, Uint8, OPAQUE_BLIT); break; \
731 blitter(2, Uint8, ALPHA_BLIT16_565_50); \
733 blitter(2, Uint8, ALPHA_BLIT16_565); \
744 blitter(2, Uint8, ALPHA_BLIT16_555_50); \
746 blitter(2, Uint8, ALPHA_BLIT16_555); \
754 blitter(2, Uint8, ALPHA_BLIT_ANY); \
759 blitter(3, Uint8, ALPHA_BLIT_ANY); \
783 static void RLEClipBlit(int w, Uint8 *srcbuf, SDL_Surface *dst,
784 Uint8 *dstbuf, SDL_Rect *srcrect, unsigned alpha)
843 Uint8 *dstbuf;
844 Uint8 *srcbuf;
859 dstbuf = (Uint8 *)dst->pixels
861 srcbuf = (Uint8 *)src->map->sw_data->aux_data;
888 case 1: RLESKIP(1, Uint8); break;
889 case 2: RLESKIP(2, Uint8); break;
890 case 3: RLESKIP(3, Uint8); break;
1000 Uint8 BytesPerPixel;
1001 Uint8 Rloss;
1002 Uint8 Gloss;
1003 Uint8 Bloss;
1004 Uint8 Rshift;
1005 Uint8 Gshift;
1006 Uint8 Bshift;
1007 Uint8 Ashift;
1015 static void RLEAlphaClipBlit(int w, Uint8 *srcbuf, SDL_Surface *dst,
1016 Uint8 *dstbuf, SDL_Rect *srcrect)
1096 RLEALPHACLIPBLIT(Uint16, Uint8, BLIT_TRANSL_565);
1098 RLEALPHACLIPBLIT(Uint16, Uint8, BLIT_TRANSL_555);
1112 Uint8 *srcbuf, *dstbuf;
1124 dstbuf = (Uint8 *)dst->pixels
1126 srcbuf = (Uint8 *)src->map->sw_data->aux_data + sizeof(RLEDestFormat);
1243 RLEALPHABLIT(Uint16, Uint8, BLIT_TRANSL_565);
1245 RLEALPHABLIT(Uint16, Uint8, BLIT_TRANSL_555);
1408 Uint8 *rlebuf, *dst;
1468 rlebuf = (Uint8 *)SDL_malloc(maxsize);
1497 Uint8 *lastline = dst; /* end of last non-blank line */
1604 Uint8 *p = SDL_realloc(rlebuf, dst - rlebuf);
1613 static Uint32 getpix_8(Uint8 *srcbuf)
1618 static Uint32 getpix_16(Uint8 *srcbuf)
1623 static Uint32 getpix_24(Uint8 *srcbuf)
1632 static Uint32 getpix_32(Uint8 *srcbuf)
1637 typedef Uint32 (*getpix_func)(Uint8 *);
1645 Uint8 *rlebuf, *dst;
1648 Uint8 *srcbuf, *lastline;
1675 rlebuf = (Uint8 *)SDL_malloc(maxsize);
1682 srcbuf = (Uint8 *)surface->pixels;
1762 Uint8 *p = SDL_realloc(rlebuf, dst - rlebuf);
1825 Uint8 *srcbuf;
1851 srcbuf = (Uint8 *)(df + 1);