Home | History | Annotate | Download | only in video

Lines Matching refs:Amask

84       ((a<<dstfmt->Ashift)&dstfmt->Amask) )
136 Uint32 amask;
138 if (dstfmt->Amask) {
139 amask = ((srcfmt->Amask) ? RESHIFT(srcfmt->Ashift) : 0x10) << (dstfmt->Ashift);
141 amask = 0x10101010 & ((dstfmt->Rmask | dstfmt->Gmask | dstfmt->Bmask) ^ 0xFFFFFFFF);
144 ((unsigned int *)(char*)&srcvec)[0] = (rmask | gmask | bmask | amask);
315 if (dstfmt->Amask && srcfmt->alpha) {
460 if (dstfmt->Amask && srcfmt->alpha) {
553 int copy_alpha = (srcfmt->Amask && dstfmt->Amask);
554 unsigned alpha = dstfmt->Amask ? srcfmt->alpha : 0;
667 if (dstfmt->Amask && !srcfmt->Amask) {
745 if (dstfmt->Amask && !srcfmt->Amask) {
2001 if (dstfmt->Amask) {
2046 unsigned alpha = dstfmt->Amask ? srcfmt->alpha : 0;
2108 Uint32 rgbmask = ~srcfmt->Amask;
2167 Uint32 rgbmask = ~info->src->Amask;
2202 unsigned alpha = dstfmt->Amask ? srcfmt->alpha : 0;
2203 Uint32 rgbmask = ~srcfmt->Amask;
2241 Uint32 rgbmask = ~srcfmt->Amask;
2415 if(srcfmt->Amask && dstfmt->Amask)
2445 if(dstfmt->Amask)
2446 a_need = srcfmt->Amask ? COPY_ALPHA : SET_ALPHA;